Repair example, per note in interactive docs.
authorTom Lane <[email protected]>
Sun, 30 Dec 2001 04:36:52 +0000 (04:36 +0000)
committerTom Lane <[email protected]>
Sun, 30 Dec 2001 04:36:52 +0000 (04:36 +0000)
doc/src/sgml/ref/cluster.sgml

index af98c5e3582d4fd82c131e07b1148ddf8e05336d..a8597b7ab7a8cbaa585a89030f7ce84aa3404fe7 100644 (file)
@@ -190,8 +190,8 @@ SELECT <replaceable class="parameter">columnlist</replaceable> INTO TABLE <repla
     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>
-    to rename <replaceable class="parameter">temp</replaceable> to the old name, and
-    recreate any indexes. The only problem is that <acronym>OID</acronym>s
+    to rename <replaceable class="parameter">newtable</replaceable> to the old name, and
+    recreate the table's indexes. The only problem is that <acronym>OID</acronym>s
     will not be preserved. From then on, <command>CLUSTER</command> should be
     fast because most of the heap data has already been
     ordered, and the existing index is used.