[COMMITTERS] pgsql: Receive invalidation messages correctly in tablesync worker - Mailing list pgsql-committers

From Peter Eisentraut
Subject [COMMITTERS] pgsql: Receive invalidation messages correctly in tablesync worker
Date
Msg-id E1dHBEP-0005Cf-UL@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Receive invalidation messages correctly in tablesync worker

We didn't accept any invalidation messages until the whole sync process
had finished (because it flattens all the remote transactions in the
single one).  So the sync worker didn't learn about subscription
changes/drop until it has finished.  This could lead to "orphaned" sync
workers.

Author: Petr Jelinek <petr.jelinek@2ndquadrant.com>
Reported-by: Masahiko Sawada <sawada.mshk@gmail.com>

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/66b84fa82f7318d8da75dbf754df16eb7b1f1037

Modified Files
--------------
src/backend/replication/logical/worker.c | 23 +++++++++++++++--------
1 file changed, 15 insertions(+), 8 deletions(-)


pgsql-committers by date:

Previous
From: Peter Eisentraut
Date:
Subject: [COMMITTERS] pgsql: Make tablesync worker exit when apply dies while it waswaiting
Next
From: Tom Lane
Date:
Subject: [COMMITTERS] pgsql: Fix old corner-case logic error in final_cost_nestloop().