pgsql: Consistently spell a replication slot's name as slot_name.

From: Andres Freund <andres(at)anarazel(dot)de>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Consistently spell a replication slot's name as slot_name.
Date: 2014-06-05 14:30:45
Message-ID: E1WsYgn-0007iq-A9@gemulon.postgresql.org
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-committers

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'.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/f0c108560bce3a5481db57ffc3743e71b5f7b2d1

Modified Files
--------------
doc/src/sgml/func.sgml | 28 +++++++++++------------
doc/src/sgml/high-availability.sgml | 6 ++---
doc/src/sgml/logicaldecoding.sgml | 8 +++----
doc/src/sgml/protocol.sgml | 16 ++++++-------
doc/src/sgml/recovery-config.sgml | 6 ++---
src/backend/access/transam/recovery.conf.sample | 2 +-
src/backend/access/transam/xlog.c | 4 ++--
src/backend/catalog/system_views.sql | 8 +++----
src/bin/pg_basebackup/pg_recvlogical.c | 8 +++----
src/include/catalog/catversion.h | 2 +-
src/include/catalog/pg_proc.h | 12 +++++-----
11 files changed, 50 insertions(+), 50 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2014-06-05 15:31:48 pgsql: Add defenses against running with a wrong selection of LOBLKSIZE
Previous Message Andres Freund 2014-06-05 11:55:49 pgsql: Move regression test listing of builtin leakproof functions to o