是否可以从其他 PL/Python 块中将 PL/Python 函数作为普通 Python 函数调用?例如,我有一个函数 f1:create or replace function f1() returns text as $$return "hello"$$ language 'plpython3u';我想从其他函数或块中调用此函数,例如这个匿名块:do $$begin...t = f1()..
2016-01-13
有没有办法从 PL/Python 函数中访问 PostgreSQL 函数?当我在 PL/pgSQL 中编写时,我可以直接调用它们。例如,我可以在 PL/pgSQL 中编写 char_length('Bob'),它将使用内置的 PostgreSQL 函数 char_length。当我尝试对 PL/Python 执行该操作时,它会出错,提示 char_length 未定义。有没有可以访问内置函数的命名
2017-10-05