Call postgres PL/Python stored function from another PL/Python block.

Поиск
Список
Период
Сортировка
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.

В списке pgsql-general по дате отправления:

Предыдущее
От: Kevin Grittner
Дата:
Сообщение: Re: WIP: CoC V5
Следующее
От: Tom Lane
Дата:
Сообщение: Re: WIP: CoC V5