11<!--
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 $
33PostgreSQL documentation
44-->
55
@@ -817,7 +817,7 @@ CREATE TABLE distributors (
817817 <title id="SQL-CREATETABLE-compatibility-title">Compatibility</title>
818818
819819 <para>
820- The <command>CREATE TABLE</command> conforms to SQL92 Intermediate
820+ The <command>CREATE TABLE</command>command conforms to SQL92
821821 and to a subset of SQL99, with exceptions listed below and in the
822822 descriptions above.
823823 </para>
@@ -834,6 +834,8 @@ CREATE TABLE distributors (
834834 <productname>PostgreSQL</productname> does not have modules, and
835835 requires each session to issue its own <literal>CREATE TEMPORARY
836836 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.
837839 </para>
838840
839841 <note>
@@ -845,7 +847,7 @@ CREATE TABLE distributors (
845847 </note>
846848
847849 <para>
848- Theoptional <literal>ON COMMIT</literal> clause for temporary tables
850+ The <literal>ON COMMIT</literal> clause for temporary tables
849851 also resembles SQL92, but has some differences.
850852 If the <literal>ON COMMIT</> clause is omitted, SQL92 specifies that the
851853 default behavior is <literal>ON COMMIT DELETE ROWS</>. However, the