[BUGS] BUG #6636: Variadic function fails with array type domain

2012-05-10 Thread lynn
The following bug has been logged on the website: Bug reference: 6636 Logged by: Lynn Dobbs Email address: l...@creditlink.com PostgreSQL version: 9.1.3 Operating system: Linux Description: 1. postgresql built from src. 2. The following functions on 9.0.4 but fails

Re: [BUGS] BUG #6636: Variadic function fails with array type domain

2012-05-10 Thread Tom Lane
l...@creditlink.com writes: 2. The following functions on 9.0.4 but fails on 9.1.3. (Discovered during a dump/restore for upgrade). 3. Code: creditlink=# create domain foo as bigint[]; CREATE DOMAIN creditlink=# create function foobar(variadic foo) as $$ select true $$ language sql;