diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2024-04-24 10:00:58 +0200 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2024-04-24 10:00:58 +0200 |
commit | 256b4b060614f4e54e49bb43a54404af4f1ef61d (patch) | |
tree | 6a804f6955e96e897078a49f8cfd9a1d9fe1c32e /src | |
parent | 286eea5d3ae33a8c22d46a051f8ac6069c8b779d (diff) | |
download | postgresql-256b4b060614f4e54e49bb43a54404af4f1ef61d.tar.gz postgresql-256b4b060614f4e54e49bb43a54404af4f1ef61d.zip |
pg_dump: Put new options in consistent order in --help and man page
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/pg_dump/pg_dump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_dump/pg_dump.c b/src/bin/pg_dump/pg_dump.c index b8acdd73551..242ebe807f5 100644 --- a/src/bin/pg_dump/pg_dump.c +++ b/src/bin/pg_dump/pg_dump.c @@ -1115,7 +1115,6 @@ help(const char *progname) printf(_(" -c, --clean clean (drop) database objects before recreating\n")); printf(_(" -C, --create include commands to create database in dump\n")); printf(_(" -e, --extension=PATTERN dump the specified extension(s) only\n")); - printf(_(" --exclude-extension=PATTERN do NOT dump the specified extension(s)\n")); printf(_(" -E, --encoding=ENCODING dump the data in encoding ENCODING\n")); printf(_(" -n, --schema=PATTERN dump the specified schema(s) only\n")); printf(_(" -N, --exclude-schema=PATTERN do NOT dump the specified schema(s)\n")); @@ -1132,6 +1131,7 @@ help(const char *progname) printf(_(" --disable-triggers disable triggers during data-only restore\n")); printf(_(" --enable-row-security enable row security (dump only content user has\n" " access to)\n")); + printf(_(" --exclude-extension=PATTERN do NOT dump the specified extension(s)\n")); printf(_(" --exclude-table-and-children=PATTERN\n" " do NOT dump the specified table(s), including\n" " child and partition tables\n")); |