aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPeter Eisentraut <peter@eisentraut.org>2024-04-24 10:47:35 +0200
committerPeter Eisentraut <peter@eisentraut.org>2024-04-24 11:15:23 +0200
commit3886530caa01cac7179fed6b6e1d303710c027d9 (patch)
treeedf642cf7b0dca66e2471dea8da46784fa57ef2c /src
parentd80f2ce294653ce633984445c971dfb534578464 (diff)
downloadpostgresql-3886530caa01cac7179fed6b6e1d303710c027d9.tar.gz
postgresql-3886530caa01cac7179fed6b6e1d303710c027d9.zip
pg_combinebackup: Put newer options in consistent order in --help and man page
Diffstat (limited to 'src')
-rw-r--r--src/bin/pg_combinebackup/pg_combinebackup.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/pg_combinebackup/pg_combinebackup.c b/src/bin/pg_combinebackup/pg_combinebackup.c
index 95da1b01bc6..6ad17788bfc 100644
--- a/src/bin/pg_combinebackup/pg_combinebackup.c
+++ b/src/bin/pg_combinebackup/pg_combinebackup.c
@@ -732,12 +732,12 @@ help(const char *progname)
printf(_(" -o, --output output directory\n"));
printf(_(" -T, --tablespace-mapping=OLDDIR=NEWDIR\n"
" relocate tablespace in OLDDIR to NEWDIR\n"));
+ printf(_(" --clone clone (reflink) instead of copying files\n"));
+ printf(_(" --copy-file-range copy using copy_file_range() syscall\n"));
printf(_(" --manifest-checksums=SHA{224,256,384,512}|CRC32C|NONE\n"
" 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(_(" --clone clone (reflink) instead of copying files\n"));
- printf(_(" --copy-file-range copy using copy_file_range() syscall\n"));
printf(_(" -?, --help show this help, then exit\n"));
printf(_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT);