Re: Non-reserved replication slots and slot advancing

Поиск
Список
Период
Сортировка
От Alvaro Herrera
Тема Re: Non-reserved replication slots and slot advancing
Дата
Msg-id 20180709184828.5mrujf7tnbjgdrqt@alvherre.pgsql
обсуждение исходный текст
Ответ на Re: Non-reserved replication slots and slot advancing  (Andres Freund <andres@anarazel.de>)
Ответы Re: Non-reserved replication slots and slot advancing  (Michael Paquier <michael@paquier.xyz>)
Список pgsql-hackers
On 2018-Jul-09, Andres Freund wrote:

> On 2018-07-09 15:48:33 +0900, Michael Paquier wrote:

> > +    if (XLogRecPtrIsInvalid(MyReplicationSlot->data.restart_lsn))
> > +    {
> > +        ReplicationSlotRelease();
> > +        ereport(ERROR,
> > +                (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
> > +                 errmsg("cannot move slot not reserving WAL")));
> > +    }
> > +
> 
> I don't like this error message. It's unclear what refers to exactly
> what.  Nor is "move" a terminology used otherwise.  How about:
> "cannot advance replication slot that has not previously reserved WAL"
> or something similar?
> 
> Also, ERRCODE_FEATURE_NOT_SUPPORTED doesn't quite seem right. How about
> ERRCODE_OBJECT_NOT_IN_PREREQUISITE_STATE?

+1 to both of Andres' suggestions.

-- 
Álvaro Herrera                https://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services


В списке pgsql-hackers по дате отправления:

Предыдущее
От: Andres Freund
Дата:
Сообщение: Re: Non-reserved replication slots and slot advancing
Следующее
От: Alvaro Herrera
Дата:
Сообщение: Re: no partition pruning when partitioning using array type