pg13
This commit is contained in:
@@ -1,11 +1,17 @@
|
||||
/* src/pl/plperl/plperlu--1.0.sql */
|
||||
|
||||
/*
|
||||
* Currently, all the interesting stuff is done by CREATE LANGUAGE.
|
||||
* Later we will probably "dumb down" that command and put more of the
|
||||
* knowledge into this script.
|
||||
*/
|
||||
CREATE FUNCTION plperlu_call_handler() RETURNS language_handler
|
||||
LANGUAGE c AS 'MODULE_PATHNAME';
|
||||
|
||||
CREATE LANGUAGE plperlu;
|
||||
CREATE FUNCTION plperlu_inline_handler(internal) RETURNS void
|
||||
STRICT LANGUAGE c AS 'MODULE_PATHNAME';
|
||||
|
||||
CREATE FUNCTION plperlu_validator(oid) RETURNS void
|
||||
STRICT LANGUAGE c AS 'MODULE_PATHNAME';
|
||||
|
||||
CREATE LANGUAGE plperlu
|
||||
HANDLER plperlu_call_handler
|
||||
INLINE plperlu_inline_handler
|
||||
VALIDATOR plperlu_validator;
|
||||
|
||||
COMMENT ON LANGUAGE plperlu IS 'PL/PerlU untrusted procedural language';
|
||||
|
||||
Reference in New Issue
Block a user