pgsql: Fix error with CREATE PUBLICATION, wal_level=minimal, and new ta

From: Noah Misch <noah(at)leadboat(dot)com>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Fix error with CREATE PUBLICATION, wal_level=minimal, and new ta
Date: 2021-01-30 08:36:47
Message-ID: E1l5lkN-0004Zo-Vn@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Fix error with CREATE PUBLICATION, wal_level=minimal, and new tables.

CREATE PUBLICATION has failed spuriously when applied to a permanent
relation created or rewritten in the current transaction. Make the same
change to another site having the same semantic intent; the second
instance has no user-visible consequences. Back-patch to v13, where
commit c6b92041d38512a4176ed76ad06f713d2e6c01a8 broke this.

Kyotaro Horiguchi

Discussion: https://postgr.es/m/20210113.160705.2225256954956139776.horikyota.ntt@gmail.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/360bd2321b1ad9c47466bc485ee5eb2f4515372e

Modified Files
--------------
src/backend/catalog/pg_publication.c | 2 +-
src/backend/optimizer/util/plancat.c | 3 ++-
src/test/subscription/t/001_rep_changes.pl | 20 +++++++++++++++++++-
3 files changed, 22 insertions(+), 3 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Noah Misch 2021-01-30 08:36:48 pgsql: Fix error with CREATE PUBLICATION, wal_level=minimal, and new ta
Previous Message Fujii Masao 2021-01-30 01:13:22 pgsql: postgres_fdw: Fix tests for CLOBBER_CACHE_ALWAYS.