mirror of
https://github.com/postgres/postgres.git
synced 2025-07-28 23:42:10 +03:00
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'.
This commit is contained in:
@ -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"));
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user