diff options
author | Magnus Hagander <magnus@hagander.net> | 2021-10-27 16:20:02 +0200 |
---|---|---|
committer | Magnus Hagander <magnus@hagander.net> | 2021-10-27 16:28:11 +0200 |
commit | eff61383b982be8dc71d942340a839bea88a9eab (patch) | |
tree | 5c75dc3b1402629ffcd3e7fa1f784185311d1f28 /src | |
parent | 70bfc5ae537c8bfeed4849b7d9f814de89a155fe (diff) | |
download | postgresql-eff61383b982be8dc71d942340a839bea88a9eab.tar.gz postgresql-eff61383b982be8dc71d942340a839bea88a9eab.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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/scripts/reindexdb.c b/src/bin/scripts/reindexdb.c index a0b0250c499..64fbb40baf1 100644 --- a/src/bin/scripts/reindexdb.c +++ b/src/bin/scripts/reindexdb.c @@ -798,7 +798,7 @@ help(const char *progname) printf(_(" -i, --index=INDEX recreate specific index(es) only\n")); printf(_(" -j, --jobs=NUM use this many concurrent connections to reindex\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(_(" --tablespace=TABLESPACE tablespace where indexes are rebuilt\n")); |