diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2002-08-16 23:01:21 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2002-08-16 23:01:21 +0000 |
commit | a208ea72bced456c4234644e4c9eda8969e8bdc9 (patch) | |
tree | 31cc8db8e64e9cbfb7499abecfe40b364e70d6c0 /src/include/utils/builtins.h | |
parent | 8dabef838c464e8788190ec3fae28a6c9b6b692a (diff) | |
download | postgresql-a208ea72bced456c4234644e4c9eda8969e8bdc9.tar.gz postgresql-a208ea72bced456c4234644e4c9eda8969e8bdc9.zip |
Modify pg_dump to dump foreign-key constraints as constraints, not as
sets of triggers. Also modify psql \d command to show foreign key
constraints as such and hide the triggers. pg_get_constraintdef()
function added to backend to support these. From Rod Taylor, code
review and some editorialization by Tom Lane.
Diffstat (limited to 'src/include/utils/builtins.h')
-rw-r--r-- | src/include/utils/builtins.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/utils/builtins.h b/src/include/utils/builtins.h index 621ab80315b..3588673c2ae 100644 --- a/src/include/utils/builtins.h +++ b/src/include/utils/builtins.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: builtins.h,v 1.191 2002/08/15 02:51:27 momjian Exp $ + * $Id: builtins.h,v 1.192 2002/08/16 23:01:21 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -375,6 +375,7 @@ extern Datum pg_get_ruledef(PG_FUNCTION_ARGS); extern Datum pg_get_viewdef(PG_FUNCTION_ARGS); extern Datum pg_get_viewdef_name(PG_FUNCTION_ARGS); extern Datum pg_get_indexdef(PG_FUNCTION_ARGS); +extern Datum pg_get_constraintdef(PG_FUNCTION_ARGS); extern Datum pg_get_userbyid(PG_FUNCTION_ARGS); extern Datum pg_get_expr(PG_FUNCTION_ARGS); extern char *deparse_expression(Node *expr, List *dpcontext, |