diff options
author | Bruce Momjian <bruce@momjian.us> | 2001-10-31 04:49:44 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2001-10-31 04:49:44 +0000 |
commit | 4911c85e86a8491e97032515dee59a9612ba7e3a (patch) | |
tree | cb6bb426f852d013505d8a540db1e4967a9a52f3 /doc/src | |
parent | 74c2f8e72915e058f83776d655711315440ae2b2 (diff) | |
download | postgresql-4911c85e86a8491e97032515dee59a9612ba7e3a.tar.gz postgresql-4911c85e86a8491e97032515dee59a9612ba7e3a.zip |
Add ALTER TABLE ADD UNIQUE regression tests from Christopher Kings-Lynne.
Add space between slash for ALTER TABLE / ADD ....
Regression and *.po updates to follow.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/ref/cluster.sgml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/ref/cluster.sgml b/doc/src/sgml/ref/cluster.sgml index de6dfa3af61..72dc8033678 100644 --- a/doc/src/sgml/ref/cluster.sgml +++ b/doc/src/sgml/ref/cluster.sgml @@ -1,5 +1,5 @@ <!-- -$Header: /cvsroot/pgsql/doc/src/sgml/ref/cluster.sgml,v 1.11 2001/09/03 12:57:49 petere Exp $ +$Header: /cvsroot/pgsql/doc/src/sgml/ref/cluster.sgml,v 1.12 2001/10/31 04:49:43 momjian Exp $ Postgres documentation --> @@ -189,7 +189,7 @@ SELECT <replaceable class="parameter">columnlist</replaceable> INTO TABLE <repla which uses the <productname>Postgres</productname> sorting code in the ORDER BY clause to match the index, and which is much faster for unordered data. You then drop the old table, use - <command>ALTER TABLE/RENAME</command> + <command>ALTER TABLE...RENAME</command> to rename <replaceable class="parameter">temp</replaceable> to the old name, and recreate any indexes. The only problem is that <acronym>OID</acronym>s will not be preserved. From then on, <command>CLUSTER</command> should be |