Minor copy-editing.
authorTom Lane
Mon, 14 Apr 2003 15:40:02 +0000 (15:40 +0000)
committerTom Lane
Mon, 14 Apr 2003 15:40:02 +0000 (15:40 +0000)
doc/src/sgml/ref/create_table.sgml

index 7c407d630b9e3c19b4200a3004eb99fc0331f048..c4f5ea138cfdcabeb66b326c19ba19720cb9fc30 100644 (file)
@@ -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