1
0
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:
Bruce Momjian
2001-05-09 19:54:38 +00:00
parent 6319f5da37
commit 0bef7ba549
26 changed files with 3891 additions and 1 deletions

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