diff options
| author | Bruce Momjian | 2000-06-15 19:05:22 +0000 |
|---|---|---|
| committer | Bruce Momjian | 2000-06-15 19:05:22 +0000 |
| commit | 5683e704d09caaa29f7a76f0d93ca8fc5f8c0e75 (patch) | |
| tree | 3ae68795e6580e8ca4e464d8416cfc42d1b1bc49 /contrib/spi/refint.sql.in | |
| parent | f7f177d372750e4f766ccefdf20e1b30d66cba0a (diff) | |
Add missing /contrib files to CVS.
Diffstat (limited to 'contrib/spi/refint.sql.in')
| -rw-r--r-- | contrib/spi/refint.sql.in | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/contrib/spi/refint.sql.in b/contrib/spi/refint.sql.in new file mode 100644 index 00000000000..91448e8a2ed --- /dev/null +++ b/contrib/spi/refint.sql.in @@ -0,0 +1,14 @@ +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' +; |
