Ok, thank you very much.
2016-01-13 19:04 GMT+01:00 Adrian Klaver :
> On 01/13/2016 07:47 AM, lodopidolo wrote:
>
>> Hello. It is possible to call al PL/Python stored function natively from
>> another PL/Python function?
>>
>> Something like:
>>
>> |c
Hello. It is possible to call al PL/Python stored function natively from
another PL/Python function?
Something like:
create or replace function f1() returns text as $$
return "hello"$$ language 'plpython3u';
do $$begin
...
t = f1()
...end;$$ language 'plpython3u';
Regards.
(th