mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-21 08:29:39 +08:00
15 lines
262 B
MySQL
15 lines
262 B
MySQL
|
DROP FUNCTION check_primary_key ();
|
||
|
DROP FUNCTION check_foreign_key ();
|
||
|
|
||
|
CREATE FUNCTION check_primary_key ()
|
||
|
RETURNS opaque
|
||
|
AS 'MODULE_PATHNAME'
|
||
|
LANGUAGE 'newC'
|
||
|
;
|
||
|
|
||
|
CREATE FUNCTION check_foreign_key ()
|
||
|
RETURNS opaque
|
||
|
AS 'MODULE_PATHNAME'
|
||
|
LANGUAGE 'newC'
|
||
|
;
|