pgsql: Fill in extraUpdatedCols in logical replication - Mailing list pgsql-committers

From Peter Eisentraut
Subject pgsql: Fill in extraUpdatedCols in logical replication
Date
Msg-id E1j3i67-0002Ne-0V@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Fill in extraUpdatedCols in logical replication

The extraUpdatedCols field of the target RTE records which generated
columns are affected by an update.  This is used in a variety of
places, including per-column triggers and foreign data wrappers.  When
an update was initiated by a logical replication subscription, this
field was not filled in, so such an update would not affect generated
columns in a way that is consistent with normal updates.  To fix,
factor out some code from analyze.c to fill in extraUpdatedCols in the
logical replication worker as well.

Reviewed-by: Pavel Stehule <pavel.stehule@gmail.com>
Discussion: https://www.postgresql.org/message-id/flat/b05e781a-fa16-6b52-6738-761181204567@2ndquadrant.com

Branch
------
REL_12_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/4a97f647ddbc79af2fb91727d4a2502ce667d0fd

Modified Files
--------------
src/backend/parser/analyze.c             | 18 ++++++++++++------
src/backend/replication/logical/worker.c |  3 +++
src/include/parser/analyze.h             |  2 ++
3 files changed, 17 insertions(+), 6 deletions(-)


pgsql-committers by date:

Previous
From: Peter Eisentraut
Date:
Subject: pgsql: Fill in extraUpdatedCols in logical replication
Next
From: Tom Lane
Date:
Subject: pgsql: Teach pg_dump to dump comments on RLS policy objects.