1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-09 17:03:00 +03:00
Files
postgres/src/pl/plpython/plpython_create.sql
2001-05-09 19:54:38 +00:00

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';