New standby_slot_names GUC in PG 17

Started by Bruce Momjianover 1 year ago31 messages
Jump to latest
#1Bruce Momjian
bruce@momjian.us

The release notes have this item:

Allow specification of physical standbys that must be synchronized
before they are visible to subscribers (Hou Zhijie, Shveta Malik)

The new server variable is standby_slot_names.

Is standby_slot_names an accurate name for this GUC? It seems too
generic.

--
Bruce Momjian <bruce@momjian.us> https://momjian.us
EDB https://enterprisedb.com

Only you can decide what is important to you.

#2Nathan Bossart
nathandbossart@gmail.com
In reply to: Bruce Momjian (#1)
Re: New standby_slot_names GUC in PG 17

On Fri, Jun 21, 2024 at 11:37:54AM -0400, Bruce Momjian wrote:

The release notes have this item:

Allow specification of physical standbys that must be synchronized
before they are visible to subscribers (Hou Zhijie, Shveta Malik)

The new server variable is standby_slot_names.

Is standby_slot_names an accurate name for this GUC? It seems too
generic.

+1, I was considering bringing this up, too. I'm still thinking of
alternate names to propose, though.

--
nathan

#3Muhammad Ikram
mmikram@gmail.com
In reply to: Nathan Bossart (#2)
Re: New standby_slot_names GUC in PG 17

Hi,

A humble input, as on primary we have #primary_slot_name = '' then should
not it be okay to have standby_slot_names or standby_slot_name ? It seems
consistent with the Guc on primary.

Another suggestion is *standby_replication_slots*.

Regards,
Muhammad Ikram
Bitnine Global.

On Fri, Jun 21, 2024 at 8:47 PM Nathan Bossart <nathandbossart@gmail.com>
wrote:

On Fri, Jun 21, 2024 at 11:37:54AM -0400, Bruce Momjian wrote:

The release notes have this item:

Allow specification of physical standbys that must be synchronized
before they are visible to subscribers (Hou Zhijie, Shveta Malik)

The new server variable is standby_slot_names.

Is standby_slot_names an accurate name for this GUC? It seems too
generic.

+1, I was considering bringing this up, too. I'm still thinking of
alternate names to propose, though.

--
nathan

--
Muhammad Ikram

#4Tom Lane
tgl@sss.pgh.pa.us
In reply to: Muhammad Ikram (#3)
Re: New standby_slot_names GUC in PG 17

Muhammad Ikram <mmikram@gmail.com> writes:

A humble input, as on primary we have #primary_slot_name = '' then should
not it be okay to have standby_slot_names or standby_slot_name ? It seems
consistent with the Guc on primary.
Another suggestion is *standby_replication_slots*.

IIUC, Bruce's complaint is that the name is too generic (which I agree
with). Given the stated functionality:

Allow specification of physical standbys that must be synchronized
before they are visible to subscribers (Hou Zhijie, Shveta Malik)

it seems like the name ought to have some connection to
synchronization. Perhaps something like "synchronized_standby_slots"?

I haven't read the patch, so I don't know if this name is especially
on-point. But "standby_slot_names" seems completely unhelpful, as
a server could well have slots that are for standbys but are not to
be included in this list.

regards, tom lane

#5Muhammad Ikram
mmikram@gmail.com
In reply to: Tom Lane (#4)
Re: New standby_slot_names GUC in PG 17

Thanks Tom Lane. You are more insightful.

Regards,
Ikram

On Sat, Jun 22, 2024 at 12:50 AM Tom Lane <tgl@sss.pgh.pa.us> wrote:

Muhammad Ikram <mmikram@gmail.com> writes:

A humble input, as on primary we have #primary_slot_name = '' then

should

not it be okay to have standby_slot_names or standby_slot_name ? It seems
consistent with the Guc on primary.
Another suggestion is *standby_replication_slots*.

IIUC, Bruce's complaint is that the name is too generic (which I agree
with). Given the stated functionality:

Allow specification of physical standbys that must be synchronized
before they are visible to subscribers (Hou Zhijie, Shveta Malik)

it seems like the name ought to have some connection to
synchronization. Perhaps something like "synchronized_standby_slots"?

I haven't read the patch, so I don't know if this name is especially
on-point. But "standby_slot_names" seems completely unhelpful, as
a server could well have slots that are for standbys but are not to
be included in this list.

regards, tom lane

--
Muhammad Ikram

#6Nathan Bossart
nathandbossart@gmail.com
In reply to: Tom Lane (#4)
Re: New standby_slot_names GUC in PG 17

On Fri, Jun 21, 2024 at 03:50:00PM -0400, Tom Lane wrote:

Allow specification of physical standbys that must be synchronized
before they are visible to subscribers (Hou Zhijie, Shveta Malik)

it seems like the name ought to have some connection to
synchronization. Perhaps something like "synchronized_standby_slots"?

IMHO that might be a bit too close to synchronous_standby_names. But the
name might not be the only issue, as there is a separate proposal [0]/messages/by-id/CA+-JvFtq6f7+wAwSdud-x0yMTeMejUhpkyid1Xa_VNpRd_-oPw@mail.gmail.com to
add _another_ GUC to tie standby_slot_names to synchronous replication. I
wonder if this could just be a Boolean parameter or if folks really have
use-cases for both a list of synchronous standbys and a separate list of
synchronous standbys for failover slots.

[0]: /messages/by-id/CA+-JvFtq6f7+wAwSdud-x0yMTeMejUhpkyid1Xa_VNpRd_-oPw@mail.gmail.com

--
nathan

#7Amit Kapila
amit.kapila16@gmail.com
In reply to: Nathan Bossart (#6)
Re: New standby_slot_names GUC in PG 17

On Sat, Jun 22, 2024 at 1:49 AM Nathan Bossart <nathandbossart@gmail.com> wrote:

On Fri, Jun 21, 2024 at 03:50:00PM -0400, Tom Lane wrote:

Allow specification of physical standbys that must be synchronized
before they are visible to subscribers (Hou Zhijie, Shveta Malik)

it seems like the name ought to have some connection to
synchronization. Perhaps something like "synchronized_standby_slots"?

IMHO that might be a bit too close to synchronous_standby_names. But the
name might not be the only issue, as there is a separate proposal [0] to
add _another_ GUC to tie standby_slot_names to synchronous replication. I
wonder if this could just be a Boolean parameter or if folks really have
use-cases for both a list of synchronous standbys and a separate list of
synchronous standbys for failover slots.

Both have separate functionalities. We need to wait for the standby's
in synchronous_standby_names to be synced at the commit time whereas
the standby's in the standby_slot_names doesn't have such a
requirement. The standby's in the standby_slot_names are used by
logical WAL senders such that they will send decoded changes to
plugins only after the specified replication slots confirm receiving
WAL. So, combining them doesn't sound advisable.

--
With Regards,
Amit Kapila.

#8Amit Kapila
amit.kapila16@gmail.com
In reply to: Nathan Bossart (#6)
Re: New standby_slot_names GUC in PG 17

On Sat, Jun 22, 2024 at 1:49 AM Nathan Bossart <nathandbossart@gmail.com> wrote:

On Fri, Jun 21, 2024 at 03:50:00PM -0400, Tom Lane wrote:

Allow specification of physical standbys that must be synchronized
before they are visible to subscribers (Hou Zhijie, Shveta Malik)

it seems like the name ought to have some connection to
synchronization. Perhaps something like "synchronized_standby_slots"?

IMHO that might be a bit too close to synchronous_standby_names.

Right, but better than the current one. The other possibility could be
wait_for_standby_slots.

--
With Regards,
Amit Kapila.

#9Bruce Momjian
bruce@momjian.us
In reply to: Amit Kapila (#8)
Re: New standby_slot_names GUC in PG 17

On Sat, Jun 22, 2024 at 03:17:03PM +0530, Amit Kapila wrote:

On Sat, Jun 22, 2024 at 1:49 AM Nathan Bossart <nathandbossart@gmail.com> wrote:

On Fri, Jun 21, 2024 at 03:50:00PM -0400, Tom Lane wrote:

Allow specification of physical standbys that must be synchronized
before they are visible to subscribers (Hou Zhijie, Shveta Malik)

it seems like the name ought to have some connection to
synchronization. Perhaps something like "synchronized_standby_slots"?

IMHO that might be a bit too close to synchronous_standby_names.

Right, but better than the current one. The other possibility could be
wait_for_standby_slots.

FYI, changing this GUC name could force an initdb because
postgresql.conf would have the old name and removing the comment to
change it would cause an error. Therefore, we should change it ASAP.

--
Bruce Momjian <bruce@momjian.us> https://momjian.us
EDB https://enterprisedb.com

Only you can decide what is important to you.

#10Tom Lane
tgl@sss.pgh.pa.us
In reply to: Bruce Momjian (#9)
Re: New standby_slot_names GUC in PG 17

Bruce Momjian <bruce@momjian.us> writes:

FYI, changing this GUC name could force an initdb because
postgresql.conf would have the old name and removing the comment to
change it would cause an error. Therefore, we should change it ASAP.

That's not reason for a forced initdb IMO. It's easily fixed by
hand.

At this point we're into the release freeze for beta2, so even
if we had consensus on a new name it should wait till after.
So I see no particular urgency to make a decision.

regards, tom lane

#11Zhijie Hou (Fujitsu)
houzj.fnst@fujitsu.com
In reply to: Amit Kapila (#8)
RE: New standby_slot_names GUC in PG 17

On Saturday, June 22, 2024 5:47 PM Amit Kapila <amit.kapila16@gmail.com> wrote:

On Sat, Jun 22, 2024 at 1:49 AM Nathan Bossart
<nathandbossart@gmail.com> wrote:

On Fri, Jun 21, 2024 at 03:50:00PM -0400, Tom Lane wrote:

Allow specification of physical standbys that must be
synchronized before they are visible to subscribers (Hou Zhijie,
Shveta Malik)

it seems like the name ought to have some connection to
synchronization. Perhaps something like "synchronized_standby_slots"?

IMHO that might be a bit too close to synchronous_standby_names.

Right, but better than the current one. The other possibility could be
wait_for_standby_slots.

I agree the current name seems too generic and the suggested ' synchronized_standby_slots '
is better than the current one.

Some other ideas could be:

synchronize_slots_on_standbys: it indicates that the standbys that enabled
slot sync should be listed in this GUC.

logical_replication_wait_slots: it means the logical replication(logical
Walsender process) will wait for these slots to advance the confirm flush
lsn before proceeding.

Best Regards,
Hou zj

#12Masahiko Sawada
sawada.mshk@gmail.com
In reply to: Zhijie Hou (Fujitsu) (#11)
Re: New standby_slot_names GUC in PG 17

On Tue, Jun 25, 2024 at 11:21 AM Zhijie Hou (Fujitsu)
<houzj.fnst@fujitsu.com> wrote:

On Saturday, June 22, 2024 5:47 PM Amit Kapila <amit.kapila16@gmail.com> wrote:

On Sat, Jun 22, 2024 at 1:49 AM Nathan Bossart
<nathandbossart@gmail.com> wrote:

On Fri, Jun 21, 2024 at 03:50:00PM -0400, Tom Lane wrote:

Allow specification of physical standbys that must be
synchronized before they are visible to subscribers (Hou Zhijie,
Shveta Malik)

it seems like the name ought to have some connection to
synchronization. Perhaps something like "synchronized_standby_slots"?

IMHO that might be a bit too close to synchronous_standby_names.

Right, but better than the current one. The other possibility could be
wait_for_standby_slots.

I agree the current name seems too generic and the suggested ' synchronized_standby_slots '
is better than the current one.

Some other ideas could be:

synchronize_slots_on_standbys: it indicates that the standbys that enabled
slot sync should be listed in this GUC.

logical_replication_wait_slots: it means the logical replication(logical
Walsender process) will wait for these slots to advance the confirm flush
lsn before proceeding.

I feel that the name that has some connection to "logical replication"
also sounds good. Let me add some ideas:

- logical_replication_synchronous_standby_slots (might be too long)
- logical_replication_synchronous_slots

Regards,

--
Masahiko Sawada
Amazon Web Services: https://aws.amazon.com

#13Amit Kapila
amit.kapila16@gmail.com
In reply to: Masahiko Sawada (#12)
Re: New standby_slot_names GUC in PG 17

On Tue, Jun 25, 2024 at 8:20 AM Masahiko Sawada <sawada.mshk@gmail.com> wrote:

On Tue, Jun 25, 2024 at 11:21 AM Zhijie Hou (Fujitsu)
<houzj.fnst@fujitsu.com> wrote:

I agree the current name seems too generic and the suggested ' synchronized_standby_slots '
is better than the current one.

Some other ideas could be:

synchronize_slots_on_standbys: it indicates that the standbys that enabled
slot sync should be listed in this GUC.

logical_replication_wait_slots: it means the logical replication(logical
Walsender process) will wait for these slots to advance the confirm flush
lsn before proceeding.

I feel that the name that has some connection to "logical replication"
also sounds good. Let me add some ideas:

- logical_replication_synchronous_standby_slots (might be too long)
- logical_replication_synchronous_slots

I see your point about keeping logical_replication in the name but
that could also lead one to think that this list can contain logical
slots. OTOH, there is some value in keeping '_standby_' in the name as
that is more closely associated with physical standby's and this list
contains physical slots corresponding to physical standby's. So, my
preference is in order as follows: synchronized_standby_slots,
wait_for_standby_slots, logical_replication_wait_slots,
logical_replication_synchronous_slots, and
logical_replication_synchronous_standby_slots.

--
With Regards,
Amit Kapila.

#14Bertrand Drouvot
bertranddrouvot.pg@gmail.com
In reply to: Amit Kapila (#13)
Re: New standby_slot_names GUC in PG 17

Hi,

On Tue, Jun 25, 2024 at 10:24:41AM +0530, Amit Kapila wrote:

On Tue, Jun 25, 2024 at 8:20 AM Masahiko Sawada <sawada.mshk@gmail.com> wrote:

On Tue, Jun 25, 2024 at 11:21 AM Zhijie Hou (Fujitsu)
<houzj.fnst@fujitsu.com> wrote:

I agree the current name seems too generic and the suggested ' synchronized_standby_slots '
is better than the current one.

Some other ideas could be:

synchronize_slots_on_standbys: it indicates that the standbys that enabled
slot sync should be listed in this GUC.

logical_replication_wait_slots: it means the logical replication(logical
Walsender process) will wait for these slots to advance the confirm flush
lsn before proceeding.

I feel that the name that has some connection to "logical replication"
also sounds good. Let me add some ideas:

- logical_replication_synchronous_standby_slots (might be too long)
- logical_replication_synchronous_slots

I see your point about keeping logical_replication in the name but
that could also lead one to think that this list can contain logical
slots.

Agree, and we may add the same functionality for physical replication slots
in the future too (it has been discussed in the thread [1]/messages/by-id/bb437218-73bc-34c3-b8fb-8c1be4ddaec9@enterprisedb.com). So I don't think
"logical" should be part of the name.

OTOH, there is some value in keeping '_standby_' in the name as
that is more closely associated with physical standby's and this list
contains physical slots corresponding to physical standby's. So, my
preference is in order as follows: synchronized_standby_slots,
wait_for_standby_slots, logical_replication_wait_slots,
logical_replication_synchronous_slots, and
logical_replication_synchronous_standby_slots.

I like the idea of having "synchronize[d]" in the name as it makes think of
the feature it is linked to [2]https://git.postgresql.org/gitweb/?p=postgresql.git;a=commit;h=93db6cbda037f1be9544932bd9a785dabf3ff712. The slots mentioned in this parameter are
linked to the "primary_slot_name" parameter on the standby, so what about?

synchronized_primary_slot_names

It makes clear it is somehow linked to "primary_slot_name" and that we want them
to be in sync.

So I'd vote for (in that order);

synchronized_primary_slot_names, synchronized_standby_slots

[1]: /messages/by-id/bb437218-73bc-34c3-b8fb-8c1be4ddaec9@enterprisedb.com
[2]: https://git.postgresql.org/gitweb/?p=postgresql.git;a=commit;h=93db6cbda037f1be9544932bd9a785dabf3ff712

Regards,

--
Bertrand Drouvot
PostgreSQL Contributors Team
RDS Open Source Databases
Amazon Web Services: https://aws.amazon.com

#15Masahiko Sawada
sawada.mshk@gmail.com
In reply to: Amit Kapila (#13)
Re: New standby_slot_names GUC in PG 17

On Tue, Jun 25, 2024 at 1:54 PM Amit Kapila <amit.kapila16@gmail.com> wrote:

On Tue, Jun 25, 2024 at 8:20 AM Masahiko Sawada <sawada.mshk@gmail.com> wrote:

On Tue, Jun 25, 2024 at 11:21 AM Zhijie Hou (Fujitsu)
<houzj.fnst@fujitsu.com> wrote:

I agree the current name seems too generic and the suggested ' synchronized_standby_slots '
is better than the current one.

Some other ideas could be:

synchronize_slots_on_standbys: it indicates that the standbys that enabled
slot sync should be listed in this GUC.

logical_replication_wait_slots: it means the logical replication(logical
Walsender process) will wait for these slots to advance the confirm flush
lsn before proceeding.

I feel that the name that has some connection to "logical replication"
also sounds good. Let me add some ideas:

- logical_replication_synchronous_standby_slots (might be too long)
- logical_replication_synchronous_slots

I see your point about keeping logical_replication in the name but
that could also lead one to think that this list can contain logical
slots.

Right.

OTOH, there is some value in keeping '_standby_' in the name as
that is more closely associated with physical standby's and this list
contains physical slots corresponding to physical standby's.

Agreed.

So, my
preference is in order as follows: synchronized_standby_slots,
wait_for_standby_slots, logical_replication_wait_slots,
logical_replication_synchronous_slots, and
logical_replication_synchronous_standby_slots.

I also prefer synchronized_standby_slots.

From a different angle just for discussion, is it worth considering
the term 'failover' since the purpose of this feature is to ensure a
standby to be ready for failover in terms of logical replication? For
example, failover_standby_slot_names?

Regards,

--
Masahiko Sawada
Amazon Web Services: https://aws.amazon.com

#16Amit Kapila
amit.kapila16@gmail.com
In reply to: Masahiko Sawada (#15)
Re: New standby_slot_names GUC in PG 17

On Tue, Jun 25, 2024 at 12:30 PM Masahiko Sawada <sawada.mshk@gmail.com> wrote:

On Tue, Jun 25, 2024 at 1:54 PM Amit Kapila <amit.kapila16@gmail.com> wrote:

So, my
preference is in order as follows: synchronized_standby_slots,
wait_for_standby_slots, logical_replication_wait_slots,
logical_replication_synchronous_slots, and
logical_replication_synchronous_standby_slots.

I also prefer synchronized_standby_slots.

From a different angle just for discussion, is it worth considering
the term 'failover' since the purpose of this feature is to ensure a
standby to be ready for failover in terms of logical replication? For
example, failover_standby_slot_names?

I feel synchronized better indicates the purpose because we ensure
such slots are synchronized before we process changes for logical
failover slots. We already have a 'failover' option for logical slots
which could make things confusing if we add 'failover' where physical
slots need to be specified.

--
With Regards,
Amit Kapila.

#17Nathan Bossart
nathandbossart@gmail.com
In reply to: Amit Kapila (#16)
Re: New standby_slot_names GUC in PG 17

On Tue, Jun 25, 2024 at 02:02:09PM +0530, Amit Kapila wrote:

On Tue, Jun 25, 2024 at 12:30 PM Masahiko Sawada <sawada.mshk@gmail.com> wrote:

On Tue, Jun 25, 2024 at 1:54 PM Amit Kapila <amit.kapila16@gmail.com> wrote:

So, my
preference is in order as follows: synchronized_standby_slots,
wait_for_standby_slots, logical_replication_wait_slots,
logical_replication_synchronous_slots, and
logical_replication_synchronous_standby_slots.

I also prefer synchronized_standby_slots.

From a different angle just for discussion, is it worth considering
the term 'failover' since the purpose of this feature is to ensure a
standby to be ready for failover in terms of logical replication? For
example, failover_standby_slot_names?

I feel synchronized better indicates the purpose because we ensure
such slots are synchronized before we process changes for logical
failover slots. We already have a 'failover' option for logical slots
which could make things confusing if we add 'failover' where physical
slots need to be specified.

I'm fine with synchronized_standby_slots.

--
nathan

#18Masahiko Sawada
sawada.mshk@gmail.com
In reply to: Amit Kapila (#16)
Re: New standby_slot_names GUC in PG 17

On Tue, Jun 25, 2024 at 5:32 PM Amit Kapila <amit.kapila16@gmail.com> wrote:

On Tue, Jun 25, 2024 at 12:30 PM Masahiko Sawada <sawada.mshk@gmail.com> wrote:

On Tue, Jun 25, 2024 at 1:54 PM Amit Kapila <amit.kapila16@gmail.com> wrote:

So, my
preference is in order as follows: synchronized_standby_slots,
wait_for_standby_slots, logical_replication_wait_slots,
logical_replication_synchronous_slots, and
logical_replication_synchronous_standby_slots.

I also prefer synchronized_standby_slots.

From a different angle just for discussion, is it worth considering
the term 'failover' since the purpose of this feature is to ensure a
standby to be ready for failover in terms of logical replication? For
example, failover_standby_slot_names?

I feel synchronized better indicates the purpose because we ensure
such slots are synchronized before we process changes for logical
failover slots. We already have a 'failover' option for logical slots
which could make things confusing if we add 'failover' where physical
slots need to be specified.

Agreed. So +1 for synchronized_stnadby_slots.

Regards,

--
Masahiko Sawada
Amazon Web Services: https://aws.amazon.com

#19Zhijie Hou (Fujitsu)
houzj.fnst@fujitsu.com
In reply to: Masahiko Sawada (#18)
RE: New standby_slot_names GUC in PG 17

On Wednesday, June 26, 2024 9:40 AM Masahiko Sawada <sawada.mshk@gmail.com> wrote:

On Tue, Jun 25, 2024 at 5:32 PM Amit Kapila <amit.kapila16@gmail.com>
wrote:

On Tue, Jun 25, 2024 at 12:30 PM Masahiko Sawada

<sawada.mshk@gmail.com> wrote:

On Tue, Jun 25, 2024 at 1:54 PM Amit Kapila <amit.kapila16@gmail.com>

wrote:

So, my
preference is in order as follows: synchronized_standby_slots,
wait_for_standby_slots, logical_replication_wait_slots,
logical_replication_synchronous_slots, and
logical_replication_synchronous_standby_slots.

I also prefer synchronized_standby_slots.

From a different angle just for discussion, is it worth considering
the term 'failover' since the purpose of this feature is to ensure a
standby to be ready for failover in terms of logical replication?
For example, failover_standby_slot_names?

I feel synchronized better indicates the purpose because we ensure
such slots are synchronized before we process changes for logical
failover slots. We already have a 'failover' option for logical slots
which could make things confusing if we add 'failover' where physical
slots need to be specified.

Agreed. So +1 for synchronized_stnadby_slots.

+1.

Since there is a consensus on this name, I am attaching the patch to rename
the GUC to synchronized_stnadby_slots. I have confirmed that the regression
tests and pgindent passed for the patch.

Best Regards,
Hou zj

Best Regards,
Hou zj

Attachments:

0001-Rename-standby_slot_names-to-synchronized_standby_sl.patchapplication/octet-stream; name=0001-Rename-standby_slot_names-to-synchronized_standby_sl.patchDownload+103-102
#20Bertrand Drouvot
bertranddrouvot.pg@gmail.com
In reply to: Zhijie Hou (Fujitsu) (#19)
Re: New standby_slot_names GUC in PG 17

Hi,

On Wed, Jun 26, 2024 at 04:17:45AM +0000, Zhijie Hou (Fujitsu) wrote:

On Wednesday, June 26, 2024 9:40 AM Masahiko Sawada <sawada.mshk@gmail.com> wrote:

On Tue, Jun 25, 2024 at 5:32 PM Amit Kapila <amit.kapila16@gmail.com>
wrote:

I feel synchronized better indicates the purpose because we ensure
such slots are synchronized before we process changes for logical
failover slots. We already have a 'failover' option for logical slots
which could make things confusing if we add 'failover' where physical
slots need to be specified.

Agreed. So +1 for synchronized_stnadby_slots.

+1.

Since there is a consensus on this name, I am attaching the patch to rename
the GUC to synchronized_stnadby_slots. I have confirmed that the regression
tests and pgindent passed for the patch.

Thanks for the patch!

A few comments:

1 ====

In the commit message:

"
The standby_slot_names GUC is intended to allow specification of physical
standby slots that must be synchronized before they are visible to
subscribers
"

Not sure that wording is correct, if we feel the need to explain the GUC,
maybe repeat some wording from bf279ddd1c?

2 ====

Should we rename StandbySlotNamesConfigData too?

3 ====

Should we rename SlotExistsInStandbySlotNames too?

4 ====

Should we rename validate_standby_slots() too?

Regards,

--
Bertrand Drouvot
PostgreSQL Contributors Team
RDS Open Source Databases
Amazon Web Services: https://aws.amazon.com

#21Amit Kapila
amit.kapila16@gmail.com
In reply to: Bertrand Drouvot (#20)
#22Michael Paquier
michael@paquier.xyz
In reply to: Amit Kapila (#21)
#23Bertrand Drouvot
bertranddrouvot.pg@gmail.com
In reply to: Amit Kapila (#21)
#24Zhijie Hou (Fujitsu)
houzj.fnst@fujitsu.com
In reply to: Bertrand Drouvot (#20)
#25Bertrand Drouvot
bertranddrouvot.pg@gmail.com
In reply to: Zhijie Hou (Fujitsu) (#24)
#26Amit Kapila
amit.kapila16@gmail.com
In reply to: Bertrand Drouvot (#25)
#27Peter Eisentraut
peter_e@gmx.net
In reply to: Bruce Momjian (#1)
#28Masahiko Sawada
sawada.mshk@gmail.com
In reply to: Zhijie Hou (Fujitsu) (#24)
#29Amit Kapila
amit.kapila16@gmail.com
In reply to: Masahiko Sawada (#28)
#30Zhijie Hou (Fujitsu)
houzj.fnst@fujitsu.com
In reply to: Amit Kapila (#29)
#31Amit Kapila
amit.kapila16@gmail.com
In reply to: Zhijie Hou (Fujitsu) (#30)