diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2024-05-16 11:29:41 +0200 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2024-05-16 11:29:41 +0200 |
commit | 94af84f00c5fd3ea840759d85a73204d64e28248 (patch) | |
tree | f526fa951732c34ac057a7e1373116df1f4b3d72 /src | |
parent | 8aee330af55d8a759b2b73f5a771d9d34a7b887f (diff) | |
download | postgresql-94af84f00c5fd3ea840759d85a73204d64e28248.tar.gz postgresql-94af84f00c5fd3ea840759d85a73204d64e28248.zip |
pg_amcheck: Put new options in consistent order in --help and man page
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/pg_amcheck/pg_amcheck.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_amcheck/pg_amcheck.c b/src/bin/pg_amcheck/pg_amcheck.c index 7e3101704d4..a1ad41e7664 100644 --- a/src/bin/pg_amcheck/pg_amcheck.c +++ b/src/bin/pg_amcheck/pg_amcheck.c @@ -1205,10 +1205,10 @@ help(const char *progname) printf(_(" --startblock=BLOCK begin checking table(s) at the given block number\n")); printf(_(" --endblock=BLOCK check table(s) only up to the given block number\n")); printf(_("\nB-tree index checking options:\n")); + printf(_(" --checkunique check unique constraint if index is unique\n")); printf(_(" --heapallindexed check that all heap tuples are found within indexes\n")); printf(_(" --parent-check check index parent/child relationships\n")); printf(_(" --rootdescend search from root page to refind tuples\n")); - printf(_(" --checkunique check unique constraint if index is unique\n")); printf(_("\nConnection options:\n")); printf(_(" -h, --host=HOSTNAME database server host or socket directory\n")); printf(_(" -p, --port=PORT database server port\n")); |