]> git.ipfire.org Git - thirdparty/postgresql.git/commit
Invalidate relcache for publications defined for all tables.
authorAmit Kapila <akapila@postgresql.org>
Wed, 8 Sep 2021 04:50:02 +0000 (10:20 +0530)
committerAmit Kapila <akapila@postgresql.org>
Wed, 8 Sep 2021 06:44:59 +0000 (12:14 +0530)
commitddfc7299d0a3a41f0c178a8157bd751430428e8a
tree467e0de894c473d7ec72f756517f85c6184bf463
parentaae398a87cfafcb1d62fd1e464b2c4d2525a039a
Invalidate relcache for publications defined for all tables.

Updates/Deletes on a relation were allowed even without replica identity
after we define the publication for all tables. This would later lead to
an error on subscribers. The reason was that for such publications we were
not invalidating the relcache and the publication information for
relations was not getting rebuilt. Similarly, we were not invalidating the
relcache after dropping of such publications which will prohibit
Updates/Deletes without replica identity even without any publication.

Author: Vignesh C and Hou Zhijie
Reviewed-by: Hou Zhijie, Kyotaro Horiguchi, Amit Kapila
Backpatch-through: 10, where it was introduced
Discussion: https://postgr.es/m/CALDaNm0pF6zeWqCA8TCe2sDuwFAy8fCqba=nHampCKag-qLixg@mail.gmail.com
src/backend/commands/publicationcmds.c
src/test/regress/expected/publication.out
src/test/regress/sql/publication.sql