mirror of
https://github.com/postgres/postgres.git
synced 2025-04-24 10:47:04 +03: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'
|
|
;
|