diff options
author | Robert Haas <rhaas@postgresql.org> | 2010-05-11 16:07:42 +0000 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2010-05-11 16:07:42 +0000 |
commit | 8b8009a20dbc26a75cc1d5b79490cf64d802e2a7 (patch) | |
tree | d8ecaed89ee618d490348b5692bb0870944e0645 /doc/src | |
parent | b7987f8a942d48ecfbcb20fac6da57a4b784983d (diff) | |
download | postgresql-8b8009a20dbc26a75cc1d5b79490cf64d802e2a7.tar.gz postgresql-8b8009a20dbc26a75cc1d5b79490cf64d802e2a7.zip |
Mention related ALTER TABLE variants in documentation for CLUSTER.
As suggested by Andy Lester.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/ref/cluster.sgml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/doc/src/sgml/ref/cluster.sgml b/doc/src/sgml/ref/cluster.sgml index 2f06251b292..e7ac6c79677 100644 --- a/doc/src/sgml/ref/cluster.sgml +++ b/doc/src/sgml/ref/cluster.sgml @@ -1,5 +1,5 @@ <!-- -$PostgreSQL: pgsql/doc/src/sgml/ref/cluster.sgml,v 1.49 2010/04/03 07:22:57 petere Exp $ +$PostgreSQL: pgsql/doc/src/sgml/ref/cluster.sgml,v 1.50 2010/05/11 16:07:42 rhaas Exp $ PostgreSQL documentation --> @@ -55,7 +55,10 @@ CLUSTER [VERBOSE] When a table is clustered, <productname>PostgreSQL</productname> remembers which index it was clustered by. The form <command>CLUSTER <replaceable class="parameter">table_name</replaceable></command> - reclusters the table using the same index as before. + reclusters the table using the same index as before. You can also + use the <literal>CLUSTER</literal> or <literal>SET WITHOUT CLUSTER</literal> + forms of <xref linkend="SQL-ALTERTABLE"> to set the index to be used for + future cluster operations, or to clear any previous setting. </para> <para> |