开发者问题收集
是否可以从其他 PL/Python 块中将 PL/Python 函数作为普通 Python 函数调用?例如,我有一个函数 f1:create or replace function f1() returns text as $$return "hello"$$ language 'plpython3u';我想从其他函数或块中调用此函数,例如这个匿名块:do $$begin...t = f1()..