mirror of
https://github.com/postgres/postgres.git
synced 2026-03-05 14:54:02 -05:00
15 lines
274 B
Text
15 lines
274 B
Text
|
|
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'
|
||
|
|
;
|