aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPeter Geoghegan <pg@bowt.ie>2021-07-19 17:06:48 -0700
committerPeter Geoghegan <pg@bowt.ie>2021-07-19 17:06:48 -0700
commit28766c054f8cc6a7bbcf99497954e7a259d3edb2 (patch)
tree75351f794c38a7f059e4d97390c0152e0638b472 /src
parent0c08856856f54056ce8db116e9d254fda114c383 (diff)
downloadpostgresql-28766c054f8cc6a7bbcf99497954e7a259d3edb2.tar.gz
postgresql-28766c054f8cc6a7bbcf99497954e7a259d3edb2.zip
vacuumdb: Correct comment about --force-index-cleanup.
Commit 3499df0d added a comment that incorrectly suggested that --force-index-cleanup did not appear in the same major version as the similar --no-index-cleanup option. In fact, both options are new to PostgreSQL 14. Backpatch: 14-, where both options were introduced.
Diffstat (limited to 'src')
-rw-r--r--src/bin/scripts/vacuumdb.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/bin/scripts/vacuumdb.c b/src/bin/scripts/vacuumdb.c
index 61974baa780..a85919c5c19 100644
--- a/src/bin/scripts/vacuumdb.c
+++ b/src/bin/scripts/vacuumdb.c
@@ -916,14 +916,7 @@ prepare_vacuum_command(PQExpBuffer sql, int serverVersion,
}
if (vacopts->force_index_cleanup)
{
- /*
- * "INDEX_CLEANUP TRUE" has been supported since v12.
- *
- * Though --force-index-cleanup was added to vacuumdb in v14,
- * the "INDEX_CLEANUP TRUE" server/VACUUM behavior has never
- * changed. No reason not to support --force-index-cleanup on
- * v12+.
- */
+ /* "INDEX_CLEANUP TRUE" has been supported since v12 */
Assert(serverVersion >= 120000);
Assert(!vacopts->no_index_cleanup);
appendPQExpBuffer(sql, "%sINDEX_CLEANUP TRUE", sep);