postgresql/src/test/subscription
Peter Eisentraut a9fce66729 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>
2017-11-03 12:27:59 -04:00
..
t Don't reset additional columns on subscriber to NULL on UPDATE 2017-11-03 12:27:59 -04:00
.gitignore Logical replication 2017-01-20 09:04:49 -05:00
Makefile Update copyright years in some recently added files 2017-01-25 12:32:05 -05:00
README Logical replication 2017-01-20 09:04:49 -05:00

src/test/subscription/README

Regression tests for subscription/logical replication
=====================================================

This directory contains a test suite for subscription/logical replication.

Running the tests
=================

    make check

NOTE: This creates a temporary installation, and some tests may
create one or multiple nodes, for the purpose of the tests.

NOTE: This requires the --enable-tap-tests argument to configure.