diff options
author | Stephen Frost <sfrost@snowman.net> | 2016-12-24 01:42:10 -0500 |
---|---|---|
committer | Stephen Frost <sfrost@snowman.net> | 2016-12-24 01:42:10 -0500 |
commit | 846eaadd059aa6953b90ad7f2f6f16a965013748 (patch) | |
tree | 09a112155b4f03dca67f571e93713818072a69ea /src | |
parent | 16a2efdb28dfdbf705fcf7b95c981847cad7234d (diff) | |
download | postgresql-846eaadd059aa6953b90ad7f2f6f16a965013748.tar.gz postgresql-846eaadd059aa6953b90ad7f2f6f16a965013748.zip |
pg_dumpall: Include --verbose option in --help output
The -v/--verbose option was not included in the output from --help for
pg_dumpall even though it's in the pg_dumpall documentation and has
apparently been around since pg_dumpall was reimplemented in C in 2002.
Fix that by adding it.
Pointed out by Daniel Westermann.
Back-patch to all supported branches.
Discussion: https://www.postgresql.org/message-id/2020970042.4589542.1482482101585.JavaMail.zimbra%40dbi-services.com
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/pg_dump/pg_dumpall.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/bin/pg_dump/pg_dumpall.c b/src/bin/pg_dump/pg_dumpall.c index 6ea6be569cd..6d0dc157142 100644 --- a/src/bin/pg_dump/pg_dumpall.c +++ b/src/bin/pg_dump/pg_dumpall.c @@ -548,6 +548,7 @@ help(void) printf(_("\nGeneral options:\n")); printf(_(" -f, --file=FILENAME output file name\n")); + printf(_(" -v, --verbose verbose mode\n")); printf(_(" -V, --version output version information, then exit\n")); printf(_(" --lock-wait-timeout=TIMEOUT fail after waiting TIMEOUT for a table lock\n")); printf(_(" -?, --help show this help, then exit\n")); |