This commit is contained in:
14
dist/win-x64/postgres-standalone/share/extension/plsample--1.0.sql
vendored
Normal file
14
dist/win-x64/postgres-standalone/share/extension/plsample--1.0.sql
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
/* src/test/modules/plsample/plsample--1.0.sql */
|
||||
|
||||
-- complain if script is sourced in psql, rather than via CREATE EXTENSION
|
||||
\echo Use "CREATE EXTENSION plsample" to load this file. \quit
|
||||
|
||||
CREATE FUNCTION plsample_call_handler() RETURNS language_handler
|
||||
AS 'MODULE_PATHNAME' LANGUAGE C;
|
||||
|
||||
CREATE TRUSTED LANGUAGE plsample
|
||||
HANDLER plsample_call_handler;
|
||||
|
||||
ALTER LANGUAGE plsample OWNER TO @extowner@;
|
||||
|
||||
COMMENT ON LANGUAGE plsample IS 'PL/Sample procedural language';
|
||||
Reference in New Issue
Block a user