[COMMITTERS] pgsql: Don't reset additional columns on subscriber to NULL on UPDATE - Mailing list pgsql-committers

From Peter Eisentraut
Subject [COMMITTERS] pgsql: Don't reset additional columns on subscriber to NULL on UPDATE
Date
Msg-id E1eAevv-0002Hs-IS@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Don't reset additional columns on subscriber to NULL on UPDATE

When a publisher table has fewer columns than a subscriber, the update
of a row on the publisher should result in updating of only the columns
in common.  The previous coding mistakenly reset the values of
additional columns on the subscriber to NULL because it failed to skip
updates of columns not found in the attribute map.

Author: Petr Jelinek <petr.jelinek@2ndquadrant.com>

Branch
------
master

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

Modified Files
--------------
src/backend/replication/logical/worker.c   |  7 ++-
src/test/subscription/t/008_diff_schema.pl | 80 ++++++++++++++++++++++++++++++
2 files changed, 85 insertions(+), 2 deletions(-)


--
Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-committers

pgsql-committers by date:

Previous
From: Alvaro Herrera
Date:
Subject: [COMMITTERS] pgsql: Fix BRIN summarization concurrent with extension
Next
From: Tom Lane
Date:
Subject: Re: [COMMITTERS] pgsql: Fix BRIN summarization concurrent with extension