mirror of
https://github.com/postgres/postgres.git
synced 2025-08-09 17:03:00 +03:00
14 lines
241 B
Plaintext
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';
|
|
|