pgsql: Fix decoding of speculative aborts.

Поиск
Список
Период
Сортировка
От Amit Kapila
Тема pgsql: Fix decoding of speculative aborts.
Дата
Msg-id E1lt0Bb-0005yn-UF@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Fix decoding of speculative aborts.

During decoding for speculative inserts, we were relying for cleaning
toast hash on confirmation records or next change records. But that
could lead to multiple problems (a) memory leak if there is neither a
confirmation record nor any other record after toast insertion for a
speculative insert in the transaction, (b) error and assertion failures
if the next operation is not an insert/update on the same table.

The fix is to start queuing spec abort change and clean up toast hash
and change record during its processing. Currently, we are queuing the
spec aborts for both toast and main table even though we perform cleanup
while processing the main table's spec abort record. Later, if we have a
way to distinguish between the spec abort record of toast and the main
table, we can avoid queuing the change for spec aborts of toast tables.

Reported-by: Ashutosh Bapat
Author: Dilip Kumar
Reviewed-by: Amit Kapila
Backpatch-through: 9.6, where it was introduced
Discussion: https://postgr.es/m/CAExHW5sPKF-Oovx_qZe4p5oM6Dvof7_P+XgsNAViug15Fm99jA@mail.gmail.com

Branch
------
REL9_6_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/43acadfcebec36f4db2074e125b2af15d3afda1a

Modified Files
--------------
src/backend/replication/logical/decode.c        | 14 ++++----
src/backend/replication/logical/reorderbuffer.c | 48 ++++++++++++++++++-------
src/include/replication/reorderbuffer.h         | 11 +++---
3 files changed, 48 insertions(+), 25 deletions(-)


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

Предыдущее
От: Tom Lane
Дата:
Сообщение: pgsql: Update variant expected-result file.
Следующее
От: Alexander Korotkov
Дата:
Сообщение: pgsql: Support for unnest(multirange) and cast multirange as an array o