1
1
<!--
2
- $Header: /cvsroot/pgsql/doc/src/sgml/ref/create_table.sgml,v 1.64 2003/04/14 15:24:46 tgl Exp $
2
+ $Header: /cvsroot/pgsql/doc/src/sgml/ref/create_table.sgml,v 1.65 2003/04/14 15:40:02 tgl Exp $
3
3
PostgreSQL documentation
4
4
-->
5
5
@@ -817,7 +817,7 @@ CREATE TABLE distributors (
817
817
<title id="SQL-CREATETABLE-compatibility-title">Compatibility</title>
818
818
819
819
<para>
820
- The <command>CREATE TABLE</command> conforms to SQL92 Intermediate
820
+ The <command>CREATE TABLE</command>command conforms to SQL92
821
821
and to a subset of SQL99, with exceptions listed below and in the
822
822
descriptions above.
823
823
</para>
@@ -834,6 +834,8 @@ CREATE TABLE distributors (
834
834
<productname>PostgreSQL</productname> does not have modules, and
835
835
requires each session to issue its own <literal>CREATE TEMPORARY
836
836
TABLE</literal> command for each temporary table to be used.
837
+ The notion of <literal>GLOBAL</literal> temporary tables found in SQL92
838
+ is not in <productname>PostgreSQL</productname> at all.
837
839
</para>
838
840
839
841
<note>
@@ -845,7 +847,7 @@ CREATE TABLE distributors (
845
847
</note>
846
848
847
849
<para>
848
- Theoptional <literal>ON COMMIT</literal> clause for temporary tables
850
+ The <literal>ON COMMIT</literal> clause for temporary tables
849
851
also resembles SQL92, but has some differences.
850
852
If the <literal>ON COMMIT</> clause is omitted, SQL92 specifies that the
851
853
default behavior is <literal>ON COMMIT DELETE ROWS</>. However, the