diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2024-04-24 12:12:57 +0200 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2024-04-24 12:12:57 +0200 |
commit | 83751691e9c89af15103220b62d78cf5be73dbfd (patch) | |
tree | 942a2c62a1517d7eb15d28f4bb498fe3845e6a27 /src | |
parent | b279e37015bba58f2e9752f177a6a4f4db2b1814 (diff) | |
download | postgresql-83751691e9c89af15103220b62d78cf5be73dbfd.tar.gz postgresql-83751691e9c89af15103220b62d78cf5be73dbfd.zip |
pg_combinebackup: Add --version to --help output
(It was already on the man page.)
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/pg_combinebackup/pg_combinebackup.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/bin/pg_combinebackup/pg_combinebackup.c b/src/bin/pg_combinebackup/pg_combinebackup.c index 6ad17788bfc..4958372653b 100644 --- a/src/bin/pg_combinebackup/pg_combinebackup.c +++ b/src/bin/pg_combinebackup/pg_combinebackup.c @@ -738,6 +738,7 @@ help(const char *progname) " use algorithm for manifest checksums\n")); printf(_(" --no-manifest suppress generation of backup manifest\n")); printf(_(" --sync-method=METHOD set method for syncing files to disk\n")); + printf(_(" -V, --version output version information, then exit\n")); printf(_(" -?, --help show this help, then exit\n")); printf(_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT); |