aboutsummaryrefslogtreecommitdiff
path: root/doc/src
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2002-11-18 17:12:07 +0000
committerBruce Momjian <bruce@momjian.us>2002-11-18 17:12:07 +0000
commitc4501ec55142c9651c60baa5bcfa674500988f69 (patch)
treeac1f68d99f05d8b5e8ca1af520ebc429fe65189a /doc/src
parent72cf68138347c3d68b1652ca6c5f0994840ab361 (diff)
downloadpostgresql-c4501ec55142c9651c60baa5bcfa674500988f69.tar.gz
postgresql-c4501ec55142c9651c60baa5bcfa674500988f69.zip
Remove ALL from CLUSTER ALL. Use just CLUSTER.
Diffstat (limited to 'doc/src')
-rw-r--r--doc/src/sgml/ref/cluster.sgml10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/src/sgml/ref/cluster.sgml b/doc/src/sgml/ref/cluster.sgml
index a49d4d7d396..e72a8f61d1f 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.21 2002/11/15 03:09:35 momjian Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/cluster.sgml,v 1.22 2002/11/18 17:12:06 momjian Exp $
PostgreSQL documentation
-->
@@ -23,7 +23,7 @@ PostgreSQL documentation
<synopsis>
CLUSTER <replaceable class="PARAMETER">indexname</replaceable> ON <replaceable class="PARAMETER">tablename</replaceable>
CLUSTER <replaceable class="PARAMETER">tablename</replaceable>
-CLUSTER ALL
+CLUSTER
</synopsis>
<refsect2 id="R2-SQL-CLUSTER-1">
@@ -114,8 +114,8 @@ CLUSTER
</para>
<para>
- In calls to <command>CLUSTER ALL</command>, all the tables in the database
- that the calling user owns are clustered using the saved information. This
+ A simple <command>CLUSTER</command> clusters all the tables in the database
+ that the calling user owns and uses the saved cluster information. This
form of <command>CLUSTER</command> cannot be called from inside a
transaction or function.
</para>
@@ -225,7 +225,7 @@ CLUSTER emp;
Cluster all the tables on the database that have previously been clustered:
</para>
<programlisting>
-CLUSTER ALL;
+CLUSTER;
</programlisting>
</refsect1>