blob: 322de9521e5cc367c0c3bc34d5b62eefb8714075 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
-- Adjust this setting to control where the objects get created.
SET search_path = public;
SET autocommit TO 'on';
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';
|