Re: [HACKERS] request: support of array in plperl OUT arguments

2006-08-03 Thread Bruce Momjian
Seems Pavel has submitted the patch now, and I place it in the patch queue. --- David Fetter wrote: On Fri, Jul 28, 2006 at 10:42:49AM +0200, Pavel Stehule wrote: Hello, I miss better support OUT arguments in

Re: [HACKERS] request: support of array in plperl OUT arguments

2006-07-30 Thread David Fetter
On Fri, Jul 28, 2006 at 10:42:49AM +0200, Pavel Stehule wrote: Hello, I miss better support OUT arguments in plerlu: create or replace function foo(out p varchar[]) as $$ return { p = [pavel, jana] }; $$ language plperlu; postgres=# select foo(); ERROR: array value must start with { or

[HACKERS] request: support of array in plperl OUT arguments

2006-07-28 Thread Pavel Stehule
Hello, I miss better support OUT arguments in plerlu: create or replace function foo(out p varchar[]) as $$ return { p = [pavel, jana] }; $$ language plperlu; postgres=# select foo(); ERROR: array value must start with { or dimension information postgres=# I starting work on it. I hope It