Clarify that --system reindexes system catalogs *only*
authorMagnus Hagander
Wed, 27 Oct 2021 14:20:02 +0000 (16:20 +0200)
committerMagnus Hagander
Wed, 27 Oct 2021 14:28:54 +0000 (16:28 +0200)
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

doc/src/sgml/ref/reindexdb.sgml
src/bin/scripts/reindexdb.c

index 6275deb0fd4caae60bb73c97d17de8f68c6d6005..dd1c9e527435b6fc0ff81ef12d398c2f9e9be25b 100644 (file)
@@ -208,7 +208,7 @@ PostgreSQL documentation
       
       
        
-        Reindex database's system catalogs.
+        Reindex database's system catalogs only.
        
       
      
index 40003380aef5fb2b4e2b1da9d2c0e21ae2473a4f..c543d76b4f861bbd1d1899cffd295eaad0c0076f 100644 (file)
@@ -757,7 +757,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(_("  -v, --verbose             write a lot of output\n"));