diff options
author | Bruce Momjian | 2003-11-12 04:08:14 +0000 |
---|---|---|
committer | Bruce Momjian | 2003-11-12 04:08:14 +0000 |
commit | 1b8a054db262f13027e49894985637dc64dba94d (patch) | |
tree | e7ce643d01181b40f9c6f26ad401ee4e1f81239a | |
parent | 247809577015bea553d4bb5909aafb8596b49190 (diff) |
Here's a patch that adds some text mentioning that
RESTRICT is not deferrable to the create table reference
page.
Stephan Szabo
-rw-r--r-- | doc/src/sgml/ref/create_table.sgml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/doc/src/sgml/ref/create_table.sgml b/doc/src/sgml/ref/create_table.sgml index 099f0263f68..102c712a137 100644 --- a/doc/src/sgml/ref/create_table.sgml +++ b/doc/src/sgml/ref/create_table.sgml @@ -1,5 +1,5 @@ <!-- -$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_table.sgml,v 1.73 2003/11/01 01:56:29 petere Exp $ +$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_table.sgml,v 1.73.2.1 2003/11/12 04:08:14 momjian Exp $ PostgreSQL documentation --> @@ -439,7 +439,9 @@ and <replaceable class="PARAMETER">table_constraint</replaceable> is: <term><literal>RESTRICT</literal></term> <listitem> <para> - Same as <literal>NO ACTION</literal>. + Same as <literal>NO ACTION</literal> except that this action + will not be deferred even if the rest of the constraint is + deferrable and deferred. </para> </listitem> </varlistentry> |