From: Bruce Momjian Date: Mon, 31 Oct 2005 18:13:52 +0000 (+0000) Subject: Mention in the docs that temporary/non-temp tables can not share X-Git-Tag: REL8_1_0~32 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ee72793a91c034f68b8a70f12e6e1c43d8e80704;p=thirdparty%2Fpostgresql.git Mention in the docs that temporary/non-temp tables can not share referential integrity relationships. --- diff --git a/doc/src/sgml/ref/create_table.sgml b/doc/src/sgml/ref/create_table.sgml index 7be5d28878c..0bcd784911c 100644 --- a/doc/src/sgml/ref/create_table.sgml +++ b/doc/src/sgml/ref/create_table.sgml @@ -1,5 +1,5 @@ @@ -421,7 +421,9 @@ and table_constraint is: primary key of the reftable is used. The referenced columns must be the columns of a unique or primary - key constraint in the referenced table. + key constraint in the referenced table. Note that foreign key + constraints may not be defined between temporary tables and + permanent tables.