diff options
| author | Andres Freund | 2014-06-05 14:29:20 +0000 |
|---|---|---|
| committer | Andres Freund | 2014-06-05 14:29:20 +0000 |
| commit | f0c108560bce3a5481db57ffc3743e71b5f7b2d1 (patch) | |
| tree | a9114098aee9312eccae11ebe920abc94ce4f499 /src/bin | |
| parent | e0cb4aa89dd61cb1a76d348ced634681255b6a07 (diff) | |
Consistently spell a replication slot's name as slot_name.
Previously there's been a mix between 'slotname' and 'slot_name'. It's
not nice to be unneccessarily inconsistent in a new feature. As a post
beta1 initdb now is required in the wake of eeca4cd35e, fix the
inconsistencies.
Most the changes won't affect usage of replication slots because the
majority of changes is around function parameter names. The prominent
exception to that is that the recovery.conf parameter
'primary_slotname' is now named 'primary_slot_name'.
Diffstat (limited to 'src/bin')
| -rw-r--r-- | src/bin/pg_basebackup/pg_recvlogical.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/bin/pg_basebackup/pg_recvlogical.c b/src/bin/pg_basebackup/pg_recvlogical.c index cbbba9e4c39..dbc002d18e0 100644 --- a/src/bin/pg_basebackup/pg_recvlogical.c +++ b/src/bin/pg_basebackup/pg_recvlogical.c @@ -89,11 +89,11 @@ usage(void) printf(_(" -P, --plugin=PLUGIN use output plugin PLUGIN (default: %s)\n"), plugin); printf(_(" -s, --status-interval=SECS\n" " time between status packets sent to server (default: %d)\n"), (standby_message_timeout / 1000)); - printf(_(" -S, --slot=SLOT use existing replication slot SLOT instead of starting a new one\n")); + printf(_(" -S, --slot=SLOT name of the logical replication slot\n")); printf(_("\nAction to be performed:\n")); - printf(_(" --create create a new replication slot (for the slotname see --slot)\n")); - printf(_(" --start start streaming in a replication slot (for the slotname see --slot)\n")); - printf(_(" --drop drop the replication slot (for the slotname see --slot)\n")); + printf(_(" --create create a new replication slot (for the slot's name see --slot)\n")); + printf(_(" --start start streaming in a replication slot (for the slot's name see --slot)\n")); + printf(_(" --drop drop the replication slot (for the slot's name see --slot)\n")); printf(_("\nReport bugs to <pgsql-bugs@postgresql.org>.\n")); } |
