1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-30 11:03:19 +03:00

General trigger functions for referential integrity.

This commit is contained in:
Vadim B. Mikheev
1997-09-11 06:51:23 +00:00
parent 8ec7eef93d
commit b6f348cd33
3 changed files with 577 additions and 0 deletions

14
contrib/spi/refint.source Normal file
View File

@ -0,0 +1,14 @@
DROP FUNCTION check_primary_key ();
DROP FUNCTION check_foreign_key ();
CREATE FUNCTION check_primary_key ()
RETURNS opaque
AS '_OBJWD_/refint_DLSUFFIX_'
LANGUAGE 'c'
;
CREATE FUNCTION check_foreign_key ()
RETURNS opaque
AS '_OBJWD_/refint_DLSUFFIX_'
LANGUAGE 'c'
;