mirror of
https://github.com/postgres/postgres.git
synced 2026-03-17 16:12:13 -04:00
15 lines
357 B
MySQL
15 lines
357 B
MySQL
|
|
--
|
||
|
|
-- PL/pgSQL language declaration
|
||
|
|
--
|
||
|
|
-- $Header: /cvsroot/pgsql/contrib/plpgsql/test/Attic/mklang.sql,v 1.1 1998/08/22 12:38:36 momjian Exp $
|
||
|
|
--
|
||
|
|
|
||
|
|
create function plpgsql_call_handler() returns opaque
|
||
|
|
as '/usr/local/pgsql/lib/plpgsql.so'
|
||
|
|
language 'C';
|
||
|
|
|
||
|
|
create trusted procedural language 'plpgsql'
|
||
|
|
handler plpgsql_call_handler
|
||
|
|
lancompiler 'PL/pgSQL';
|
||
|
|
|