mirror of
https://github.com/postgres/postgres.git
synced 2025-08-09 17:03:00 +03:00
10 lines
237 B
SQL
10 lines
237 B
SQL
|
|
CREATE FUNCTION plpython_call_handler() RETURNS opaque
|
|
AS '/usr/local/lib/postgresql/langs/plpython.so'
|
|
LANGUAGE 'c';
|
|
|
|
CREATE TRUSTED PROCEDURAL LANGUAGE 'plpython'
|
|
HANDLER plpython_call_handler
|
|
LANCOMPILER 'plpython';
|
|
|