foo> - Search results
Mailing lists >> pgsql-patches >> Thread
2008-07-14 13:32:09 | Re: variadic function support (Jeff Davis)
foo(int, variadic int[]) foo(text, variadic text[]) and that forces one argument to be provided
Mailing lists >> pgsql-patches >> Thread
2008-07-13 03:13:28 | Re: variadic function support (Jeff Davis)
foo(int)" and "foo(variadic int[])". In this version, the declaration is allowed but the backend
Mailing lists >> pgsql-patches >> Thread
2008-07-13 02:50:53 | Re: variadic function support (Jeff Davis)
foo(variadic numeric)" and "foo(numeric)", and then if you do a "\df foo" the backend
Mailing lists >> pgsql-patches >> Thread
2008-06-24 02:54:05 | Re: variadic function support (Pavel Stehule)
foo(a int[], b int[]) ... variadic is called select foo(array[1,2,3], 1,2,3,4,5,6) there
Mailing lists >> pgsql-patches >> Thread
2008-06-23 23:41:18 | Re: variadic function support (Tom Lane)
foo (a text, variadic b int[]) or maybe even better create function foo (a text
Mailing lists >> pgsql-patches >> Thread
2008-06-23 23:29:57 | Re: variadic function support (Andrew Dunstan)
foo( a text, b int[]) it looks odd if both these calls are legal: foo('a',1,2,3,) foo('a',ARRAY