From: Magnus Hagander Date: Wed, 27 Oct 2021 14:20:02 +0000 (+0200) Subject: Clarify that --system reindexes system catalogs *only* X-Git-Tag: REL9_6_24~15 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=162cb0834a9a06ac076d613729447ccf5c2ee21b;p=thirdparty%2Fpostgresql.git Clarify that --system reindexes system catalogs *only* Make this more clear both in the help message and docs. Reviewed-By: Michael Paquier Backpatch-through: 9.6 Discussion: https://postgr.es/m/CABUevEw6Je0WUFTLhPKOk4+BoBuDrE-fKw3N4ckqgDBMFu4paA@mail.gmail.com --- diff --git a/doc/src/sgml/ref/reindexdb.sgml b/doc/src/sgml/ref/reindexdb.sgml index b032a62913d..5a833ff11bc 100644 --- a/doc/src/sgml/ref/reindexdb.sgml +++ b/doc/src/sgml/ref/reindexdb.sgml @@ -174,7 +174,7 @@ PostgreSQL documentation - Reindex database's system catalogs. + Reindex database's system catalogs only. diff --git a/src/bin/scripts/reindexdb.c b/src/bin/scripts/reindexdb.c index 76f0daaadf3..f39f81263ae 100644 --- a/src/bin/scripts/reindexdb.c +++ b/src/bin/scripts/reindexdb.c @@ -404,7 +404,7 @@ help(const char *progname) printf(_(" -e, --echo show the commands being sent to the server\n")); printf(_(" -i, --index=INDEX recreate specific index(es) only\n")); printf(_(" -q, --quiet don't write any messages\n")); - printf(_(" -s, --system reindex system catalogs\n")); + printf(_(" -s, --system reindex system catalogs only\n")); printf(_(" -S, --schema=SCHEMA reindex specific schema(s) only\n")); printf(_(" -t, --table=TABLE reindex specific table(s) only\n")); printf(_(" -v, --verbose write a lot of output\n"));