mirror of
https://github.com/postgres/postgres.git
synced 2026-05-20 23:53:42 -04:00
7f4f42fa10
particular get rid of single quotes around language names and old WITH () construct.
13 lines
285 B
Plaintext
13 lines
285 B
Plaintext
-- Adjust this setting to control where the objects get created.
|
|
SET search_path = public;
|
|
|
|
CREATE OR REPLACE FUNCTION check_primary_key()
|
|
RETURNS trigger
|
|
AS 'MODULE_PATHNAME'
|
|
LANGUAGE C;
|
|
|
|
CREATE OR REPLACE FUNCTION check_foreign_key()
|
|
RETURNS trigger
|
|
AS 'MODULE_PATHNAME'
|
|
LANGUAGE C;
|