aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMagnus Hagander <magnus@hagander.net>2024-01-10 13:30:10 +0100
committerMagnus Hagander <magnus@hagander.net>2024-01-10 13:30:10 +0100
commitcd02b35a4609090e6c4e4fc3d8bd055c559dea1b (patch)
tree47b76908d366e49fd5cede208109ff38b0718cb2
parent9886744a361b1b1d376fcad661eb2857829f3fde (diff)
downloadpostgresql-cd02b35a4609090e6c4e4fc3d8bd055c559dea1b.tar.gz
postgresql-cd02b35a4609090e6c4e4fc3d8bd055c559dea1b.zip
Show the default checkpoint method in the pg_basebackup help message
Author: Michael Banck Reviewed-By: Aleksander Alekseev, Michael Paquier, Peter Eisentraut Discussion: https://postgr.es/m/6530f954.170a0220.5637c.9209@mx.google.com
-rw-r--r--src/bin/pg_basebackup/pg_basebackup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_basebackup/pg_basebackup.c b/src/bin/pg_basebackup/pg_basebackup.c
index b734cce5d41..e906d5185c1 100644
--- a/src/bin/pg_basebackup/pg_basebackup.c
+++ b/src/bin/pg_basebackup/pg_basebackup.c
@@ -415,7 +415,7 @@ usage(void)
printf(_(" -Z, --compress=none do not compress tar output\n"));
printf(_("\nGeneral options:\n"));
printf(_(" -c, --checkpoint=fast|spread\n"
- " set fast or spread checkpointing\n"));
+ " set fast or spread (default) checkpointing\n"));
printf(_(" -C, --create-slot create replication slot\n"));
printf(_(" -l, --label=LABEL set backup label\n"));
printf(_(" -n, --no-clean do not clean up after errors\n"));