diff options
| author | Peter Eisentraut | 2014-07-15 18:32:55 +0000 |
|---|---|---|
| committer | Peter Eisentraut | 2014-07-15 19:08:16 +0000 |
| commit | e806da6bdbe9544e061b635f33b8ee561094b4d0 (patch) | |
| tree | 4114d66ebe1523b07464c78e039f70d9147e301a | |
| parent | 0f43a55331c5697caa2054189ad8d1e717ccb192 (diff) | |
pg_basebackup: Add more information about --max-rate option to help output
It was previously not clear what unit the option argument should have.
| -rw-r--r-- | src/bin/pg_basebackup/pg_basebackup.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/bin/pg_basebackup/pg_basebackup.c b/src/bin/pg_basebackup/pg_basebackup.c index b119fc088cc..5df2eb8c0db 100644 --- a/src/bin/pg_basebackup/pg_basebackup.c +++ b/src/bin/pg_basebackup/pg_basebackup.c @@ -232,7 +232,8 @@ usage(void) printf(_("\nOptions controlling the output:\n")); printf(_(" -D, --pgdata=DIRECTORY receive base backup into directory\n")); printf(_(" -F, --format=p|t output format (plain (default), tar)\n")); - printf(_(" -r, --max-rate=RATE maximum transfer rate to transfer data directory\n")); + printf(_(" -r, --max-rate=RATE maximum transfer rate to transfer data directory\n" + " (in kB/s, or use suffix \"k\" or \"M\")\n")); printf(_(" -R, --write-recovery-conf\n" " write recovery.conf after backup\n")); printf(_(" -T, --tablespace-mapping=OLDDIR=NEWDIR\n" |
