Don't reset additional columns on subscriber to NULL on UPDATE

Peter Eisentraut <peter_e@gmx.net>

Commit: a9fce66729ad5217e8219e22e595974059c21291
Author: Peter Eisentraut <peter_e@gmx.net>
Date: 2017-11-03T16:27:59Z
Releases: 11.0
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>

Files