pgsql: Fix an assert in CheckPointReplicationSlots().

Поиск
Список
Период
Сортировка
От Amit Kapila
Тема pgsql: Fix an assert in CheckPointReplicationSlots().
Дата
Msg-id E1sGu7m-000yLn-CX@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Fix an assert in CheckPointReplicationSlots().

Commit e0b2eed047 assumed that the confirmed_flush LSN can't go backward.
However, it is possible that confirmed_flush LSN can go backward
temporarily when the client acknowledges a prior value of flush location.
This can happen when the client (subscriber in this case) acknowledges an
LSN it doesn't have to do anything for (say for DDLs) and thus didn't
store persistently. After restart, the client sends the prior value of
flush LSN which it had stored persistently and the server updates the
confirmed_flush LSN with that value.

The fix is to remove the assumption and not allow the prior value of
confirmed_flush LSN to be flushed to the disk.

Author: Vignesh C
Reviewed-by: Amit Kapila, Shlok Kyal
Discussion: https://postgr.es/m/CALDaNm3hgow2+oEov5jBk4iYP5eQrUCF1yZtW7+dV3J__p4KLQ@mail.gmail.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/d1ffcc7fa3c54de8b2a677a3e503fc808c7b419c

Modified Files
--------------
src/backend/replication/slot.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)


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

Предыдущее
От: Amit Kapila
Дата:
Сообщение: pgsql: Doc: Fix ambuiguity in column lists.
Следующее
От: Alvaro Herrera
Дата:
Сообщение: pgsql: Fix creation of partition descriptor during concurrent detach