pgsql: Fix filtering of unsupported relations in logical replication

Поиск
Список
Период
Сортировка
От Peter Eisentraut
Тема pgsql: Fix filtering of unsupported relations in logical replication
Дата
Msg-id E1epQHl-00025f-L2@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Fix filtering of unsupported relations in logical replication

In the pgoutput plugin, skip changes for relations that are not
publishable, per is_publishable_class().  This concerns in particular
materialized views and information_schema tables.  While those relations
cannot be part of a publication, per existing checks, they will be
considered by a FOR ALL TABLES publication.  A subscription would not
actually apply changes for those relations, again per existing checks,
but trying to match incoming changes to local tables on the subscriber
would lead to errors if no matching local table exists.  Skipping those
changes on the publisher avoids sending useless changes and eliminates
the error.

Bug: #15044
Reported-by: Chad Trabant <chad@iris.washington.edu>
Reviewed-by: Petr Jelinek <petr.jelinek@2ndquadrant.com>

Branch
------
REL_10_STABLE

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

Modified Files
--------------
src/backend/catalog/pg_publication.c        | 9 +++++++++
src/backend/replication/pgoutput/pgoutput.c | 3 +++
src/include/catalog/pg_publication.h        | 1 +
3 files changed, 13 insertions(+)


В списке pgsql-committers по дате отправления:

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: pgsql: Fix deadlock hazard in CREATE INDEX CONCURRENTLY
Следующее
От: Peter Eisentraut
Дата:
Сообщение: pgsql: Check error messages in SSL tests