From 4af1769ae9f4e6dbce82a999cb544258ef0e1f95 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Mon, 14 Apr 2003 15:40:02 +0000 Subject: [PATCH] Minor copy-editing. --- doc/src/sgml/ref/create_table.sgml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/doc/src/sgml/ref/create_table.sgml b/doc/src/sgml/ref/create_table.sgml index 7c407d630b..c4f5ea138c 100644 --- a/doc/src/sgml/ref/create_table.sgml +++ b/doc/src/sgml/ref/create_table.sgml @@ -1,5 +1,5 @@ @@ -817,7 +817,7 @@ CREATE TABLE distributors ( Compatibility - The CREATE TABLE conforms to SQL92 Intermediate + The CREATE TABLE command conforms to SQL92 and to a subset of SQL99, with exceptions listed below and in the descriptions above. @@ -834,6 +834,8 @@ CREATE TABLE distributors ( PostgreSQL does not have modules, and requires each session to issue its own CREATE TEMPORARY TABLE command for each temporary table to be used. + The notion of GLOBAL temporary tables found in SQL92 + is not in PostgreSQL at all. @@ -845,7 +847,7 @@ CREATE TABLE distributors ( - The optional ON COMMIT clause for temporary tables + The ON COMMIT clause for temporary tables also resembles SQL92, but has some differences. If the ON COMMIT clause is omitted, SQL92 specifies that the default behavior is ON COMMIT DELETE ROWS. However, the