aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas G. Lockhart <lockhart@fourpalms.org>1999-02-13 03:33:50 +0000
committerThomas G. Lockhart <lockhart@fourpalms.org>1999-02-13 03:33:50 +0000
commitdcded4189519a4239de5ba0cc4541d01af06bf67 (patch)
tree43f141b7f03f041ead672e93d5f2011d0bc7f2a5
parentb10642147304371fef0f2606a1997b8840727c06 (diff)
downloadpostgresql-dcded4189519a4239de5ba0cc4541d01af06bf67.tar.gz
postgresql-dcded4189519a4239de5ba0cc4541d01af06bf67.zip
Minor markup changes for the recent TEMP TABLE info.
Docs should build now...
-rw-r--r--doc/src/sgml/ref/create_table.sgml9
1 files changed, 6 insertions, 3 deletions
diff --git a/doc/src/sgml/ref/create_table.sgml b/doc/src/sgml/ref/create_table.sgml
index acf0603ab85..96f2f58f399 100644
--- a/doc/src/sgml/ref/create_table.sgml
+++ b/doc/src/sgml/ref/create_table.sgml
@@ -18,7 +18,7 @@
<DATE>1998-09-11</DATE>
</REFSYNOPSISDIVINFO>
<SYNOPSIS>
-CREATE [TEMP] TABLE <REPLACEABLE CLASS="PARAMETER">table</REPLACEABLE> (
+CREATE [ TEMP ] TABLE <REPLACEABLE CLASS="PARAMETER">table</REPLACEABLE> (
<REPLACEABLE CLASS="PARAMETER">column</REPLACEABLE> <REPLACEABLE CLASS="PARAMETER">type</REPLACEABLE>
[ NULL | NOT NULL ] [ UNIQUE ] [ DEFAULT <REPLACEABLE CLASS="PARAMETER">value</REPLACEABLE> ]
[<REPLACEABLE>column_constraint_clause</REPLACEABLE> | PRIMARY KEY } [ ... ] ]
@@ -36,21 +36,24 @@ CREATE [TEMP] TABLE <REPLACEABLE CLASS="PARAMETER">table</REPLACEABLE> (
<TITLE>
Inputs
</TITLE>
+
<PARA>
+ <VARIABLELIST>
<VARLISTENTRY>
<TERM>
TEMP
</TERM>
<LISTITEM>
<PARA>
- The table is created unique to this session, and is
+ The table is created only for this session, and is
automatically dropped on session exit.
+ Existing permanent tables with the same name are not visible
+ while the temporary table exists.
</PARA>
</LISTITEM>
</VARLISTENTRY>
- <VARIABLELIST>
<VARLISTENTRY>
<TERM>
<REPLACEABLE CLASS="PARAMETER">table</REPLACEABLE>