pgsql: Add subtransaction handling for table synchronization workers. - Mailing list pgsql-committers

From Robert Haas
Subject pgsql: Add subtransaction handling for table synchronization workers.
Date
Msg-id E1ffBWs-0007VV-Dg@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Add subtransaction handling for table synchronization workers.

Since the old logic was completely unaware of subtransactions, a
change made in a subsequently-aborted subtransaction would still cause
workers to be stopped at toplevel transaction commit.  Fix that by
managing a stack of worker lists rather than just one.

Amit Khandekar and Robert Haas

Discussion: http://postgr.es/m/CAJ3gD9eaG_mWqiOTA2LfAug-VRNn1hrhf50Xi1YroxL37QkZNg@mail.gmail.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/32df1c9afa5a11e37b154fe50df7a4f016f289e4

Modified Files
--------------
src/backend/access/transam/xact.c          |   2 +
src/backend/replication/logical/launcher.c | 116 +++++++++++++++++++++++++++--
src/include/replication/logicallauncher.h  |   1 +
src/tools/pgindent/typedefs.list           |   1 +
4 files changed, 112 insertions(+), 8 deletions(-)


pgsql-committers by date:

Previous
From: Peter Eisentraut
Date:
Subject: pgsql: Add plan_cache_mode setting
Next
From: Alvaro Herrera
Date:
Subject: pgsql: Fix partition pruning with IS [NOT] NULL clauses