From: Bruce Momjian Date: Wed, 12 Nov 2003 04:08:14 +0000 (+0000) Subject: Here's a patch that adds some text mentioning that X-Git-Tag: REL7_4~34 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1b8a054db262f13027e49894985637dc64dba94d;p=postgresql Here's a patch that adds some text mentioning that RESTRICT is not deferrable to the create table reference page. Stephan Szabo --- diff --git a/doc/src/sgml/ref/create_table.sgml b/doc/src/sgml/ref/create_table.sgml index 099f0263f6..102c712a13 100644 --- a/doc/src/sgml/ref/create_table.sgml +++ b/doc/src/sgml/ref/create_table.sgml @@ -1,5 +1,5 @@ @@ -439,7 +439,9 @@ and table_constraint is: RESTRICT - Same as NO ACTION. + Same as NO ACTION except that this action + will not be deferred even if the rest of the constraint is + deferrable and deferred.