From eccd33ea2f81487ac0776843674f622b617b4f2b Mon Sep 17 00:00:00 2001 From: Justin Pryzby Date: Thu, 26 Mar 2020 22:33:56 -0500 Subject: [PATCH v13 4/4] fixes2 --- doc/src/sgml/ref/cluster.sgml | 2 +- doc/src/sgml/ref/reindex.sgml | 2 +- doc/src/sgml/ref/vacuum.sgml | 4 ++-- src/backend/commands/cluster.c | 3 +++ src/backend/commands/indexcmds.c | 4 ++-- 5 files changed, 9 insertions(+), 6 deletions(-) diff --git a/doc/src/sgml/ref/cluster.sgml b/doc/src/sgml/ref/cluster.sgml index 1adf12c3b9..fbe68f1de6 100644 --- a/doc/src/sgml/ref/cluster.sgml +++ b/doc/src/sgml/ref/cluster.sgml @@ -103,7 +103,7 @@ CLUSTER [VERBOSE] new_tablespace - The name of a specific tablespace to store clustered relations. + The name of the tablespace where the clustered relation is to be rebuilt. diff --git a/doc/src/sgml/ref/reindex.sgml b/doc/src/sgml/ref/reindex.sgml index b97bd673a5..fd4a0046ae 100644 --- a/doc/src/sgml/ref/reindex.sgml +++ b/doc/src/sgml/ref/reindex.sgml @@ -191,7 +191,7 @@ REINDEX [ ( option [, ...] ) ] { IN new_tablespace - The name of a specific tablespace to store rebuilt indexes. + The name of a tablespace where indexes will be rebuilt. diff --git a/doc/src/sgml/ref/vacuum.sgml b/doc/src/sgml/ref/vacuum.sgml index 0a00125a36..bac25a4067 100644 --- a/doc/src/sgml/ref/vacuum.sgml +++ b/doc/src/sgml/ref/vacuum.sgml @@ -22,7 +22,7 @@ PostgreSQL documentation VACUUM [ ( option [, ...] ) ] [ table_and_columns [, ...] ] -VACUUM [ FULL ] [ FREEZE ] [ VERBOSE ] [ ANALYZE ] [ table_and_columns [, ...] ] +VACUUM [ FULL ] [ FREEZE ] [ VERBOSE ] [ ANALYZE ] [ TABLESPACE new_tablespace ] [ table_and_columns [, ...] ] VACUUM ( FULL [, ...] ) [ TABLESPACE new_tablespace ] [ table_and_columns [, ...] ] where option can be one of: @@ -305,7 +305,7 @@ VACUUM ( FULL [, ...] ) [ TABLESPACE new_tablespa new_tablespace - The name of a specific tablespace to write a new copy of the table. + The name of the tablespace where the table is to be rebuilt. diff --git a/src/backend/commands/cluster.c b/src/backend/commands/cluster.c index 894b1fb98f..abc84f8ff1 100644 --- a/src/backend/commands/cluster.c +++ b/src/backend/commands/cluster.c @@ -278,6 +278,9 @@ cluster(ClusterStmt *stmt, bool isTopLevel) * If indexOid is InvalidOid, the table will be rewritten in physical order * instead of index order. This is the new implementation of VACUUM FULL, * and error messages should refer to the operation as VACUUM not CLUSTER. + * + * "tablespaceOid" is the tablespace to use for the rebuilt relation. If + * InvalidOid, use the tablespace in-use instead. */ void cluster_rel(Oid tableOid, Oid indexOid, Oid tablespaceOid, int options) diff --git a/src/backend/commands/indexcmds.c b/src/backend/commands/indexcmds.c index 59fb7dea2e..0403bf0282 100644 --- a/src/backend/commands/indexcmds.c +++ b/src/backend/commands/indexcmds.c @@ -2679,8 +2679,8 @@ ReindexMultipleTables(const char *objectName, ReindexObjectType objectKind, char else if (!OidIsValid(classtuple->relfilenode)) { /* - * Skip all mapped relations. - * relfilenode == 0 checks after that, similarly to + * Skip all mapped relations if TABLESPACE is specified. + * OidIsValid(relfilenode) checks that, similar to * RelationIsMapped(). */ if (!tablespace_warning) -- 2.17.0