aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMagnus Hagander <magnus@hagander.net>2021-10-27 16:20:02 +0200
committerMagnus Hagander <magnus@hagander.net>2021-10-27 16:29:04 +0200
commitad4aaf7221a70048da642652d1c379f0c5a83f50 (patch)
tree63dc7962fd5079045147fcb1835772af8d485988 /src
parent8fef901e3fe2119c434c93c9f05063633a43eaad (diff)
downloadpostgresql-ad4aaf7221a70048da642652d1c379f0c5a83f50.tar.gz
postgresql-ad4aaf7221a70048da642652d1c379f0c5a83f50.zip
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
Diffstat (limited to 'src')
-rw-r--r--src/bin/scripts/reindexdb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/scripts/reindexdb.c b/src/bin/scripts/reindexdb.c
index 5281e993b43..26f2e5f2377 100644
--- a/src/bin/scripts/reindexdb.c
+++ b/src/bin/scripts/reindexdb.c
@@ -428,7 +428,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"));