Обсуждение: pl/python out params

Поиск
Список
Период
Сортировка

pl/python out params

От
Imre Horvath
Дата:
Hi!

Is there a way to use output parameters with a pl/python fucntion?
I've tried with no luck: if I define out parameters, it says return type
must be record, if I define a record return type, I get an error on
executing that pl/python doesn't support record return type...

My simple test func is:

create or replace function outtest(out i integer, out j text)returns boolean as
$BODY$
i = 1
j = 'something'
return True
$BODY$
language plpythonu;

Thanks in advance:
Imre Horvath



Re: pl/python out params

От
Richard Albright
Дата:
first define a custom type, then drop the out parameters.

create type mytype as (
i integer,
j text );

create or replace function outtest()returns mytype as
$BODY$
i = 1
j = 'something'
return ( i, j )
$BODY$
language plpythonu;

select * from outtest();
 i |     j    
---+-----------
 1 | something
(1 row)


On 08/07/2010 10:49 AM, Imre Horvath wrote:
Hi!

Is there a way to use output parameters with a pl/python fucntion?
I've tried with no luck: if I define out parameters, it says return type
must be record, if I define a record return type, I get an error on
executing that pl/python doesn't support record return type...

My simple test func is:

create or replace function outtest(out i integer, out j text)returns boolean as
$BODY$
i = 1
j = 'something'
return True
$BODY$
language plpythonu;

Thanks in advance:
Imre Horvath

 


--
Rick Albright
Senior Quantitave Analyst
Web: www.insiderscore.com
Email: ralbright@insiderscore.com

Re: pl/python out params

От
Tom Lane
Дата:
Imre Horvath <blemidon@gmail.com> writes:
> Is there a way to use output parameters with a pl/python fucntion?

At the moment I think plpython only supports a single OUT param.
        regards, tom lane