mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-27 08:39:28 +08:00
15 lines
274 B
Plaintext
15 lines
274 B
Plaintext
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'
|
|
;
|