From: Robert Haas Date: Tue, 11 May 2010 16:07:42 +0000 (+0000) Subject: Mention related ALTER TABLE variants in documentation for CLUSTER. X-Git-Tag: REL9_0_BETA2~162 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8b8009a20dbc26a75cc1d5b79490cf64d802e2a7;p=postgresql Mention related ALTER TABLE variants in documentation for CLUSTER. As suggested by Andy Lester. --- diff --git a/doc/src/sgml/ref/cluster.sgml b/doc/src/sgml/ref/cluster.sgml index 2f06251b29..e7ac6c7967 100644 --- a/doc/src/sgml/ref/cluster.sgml +++ b/doc/src/sgml/ref/cluster.sgml @@ -1,5 +1,5 @@ @@ -55,7 +55,10 @@ CLUSTER [VERBOSE] When a table is clustered, PostgreSQL remembers which index it was clustered by. The form CLUSTER table_name - reclusters the table using the same index as before. + reclusters the table using the same index as before. You can also + use the CLUSTER or SET WITHOUT CLUSTER + forms of to set the index to be used for + future cluster operations, or to clear any previous setting.