mirror of
https://github.com/postgres/postgres.git
synced 2025-08-12 15:23:02 +03:00
Add plpython code.
This commit is contained in:
9
src/pl/plpython/plpython_create.sql
Normal file
9
src/pl/plpython/plpython_create.sql
Normal file
@@ -0,0 +1,9 @@
|
||||
|
||||
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';
|
||||
|
Reference in New Issue
Block a user