From ee72793a91c034f68b8a70f12e6e1c43d8e80704 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Mon, 31 Oct 2005 18:13:52 +0000 Subject: [PATCH] Mention in the docs that temporary/non-temp tables can not share referential integrity relationships. --- doc/src/sgml/ref/create_table.sgml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/doc/src/sgml/ref/create_table.sgml b/doc/src/sgml/ref/create_table.sgml index 7be5d28878..0bcd784911 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.