summaryrefslogtreecommitdiff
path: root/src/bin/pg_rewind
diff options
context:
space:
mode:
authorPeter Eisentraut <peter@eisentraut.org>2022-04-11 07:39:25 +0200
committerPeter Eisentraut <peter@eisentraut.org>2022-04-11 07:39:25 +0200
commit0c65177a21a9e23490bee0e50ba61eeb287f7183 (patch)
tree16b2c409dfa757b245f891321d42ded3b2d43c57 /src/bin/pg_rewind
parent8ac700acffc7b17d88414be47b8dff44fb1ea681 (diff)
downloadpostgresql-0c65177a21a9e23490bee0e50ba61eeb287f7183.tar.gz
Put new command-line options into alphabetical order in help output
Diffstat (limited to 'src/bin/pg_rewind')
-rw-r--r--src/bin/pg_rewind/pg_rewind.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/pg_rewind/pg_rewind.c b/src/bin/pg_rewind/pg_rewind.c
index 2ca4dd29af..1ff8da1676 100644
--- a/src/bin/pg_rewind/pg_rewind.c
+++ b/src/bin/pg_rewind/pg_rewind.c
@@ -88,8 +88,6 @@ usage(const char *progname)
printf(_("Options:\n"));
printf(_(" -c, --restore-target-wal use restore_command in target configuration to\n"
" retrieve WAL files from archives\n"));
- printf(_(" --config-file=FILENAME use specified main server configuration\n"));
- printf(_(" file when running target cluster\n"));
printf(_(" -D, --target-pgdata=DIRECTORY existing data directory to modify\n"));
printf(_(" --source-pgdata=DIRECTORY source data directory to synchronize with\n"));
printf(_(" --source-server=CONNSTR source server to synchronize with\n"));
@@ -99,6 +97,8 @@ usage(const char *progname)
printf(_(" -P, --progress write progress messages\n"));
printf(_(" -R, --write-recovery-conf write configuration for replication\n"
" (requires --source-server)\n"));
+ printf(_(" --config-file=FILENAME use specified main server configuration\n"
+ " file when running target cluster\n"));
printf(_(" --debug write a lot of debug messages\n"));
printf(_(" --no-ensure-shutdown do not automatically fix unclean shutdown\n"));
printf(_(" -V, --version output version information, then exit\n"));