1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-09 17:03:00 +03:00
Files
postgres/src/test/regress/input/install_plpgsql.source
2000-01-05 17:32:29 +00:00

14 lines
241 B
Plaintext

--
-- INSTALL_PLPGSQL
--
CREATE FUNCTION plpgsql_call_handler()
RETURNS opaque
AS '_LIBDIR_/plpgsql_DLSUFFIX_'
LANGUAGE 'c';
CREATE TRUSTED PROCEDURAL LANGUAGE 'plpgsql'
HANDLER plpgsql_call_handler
LANCOMPILER 'PL/pgSQL';