Fix assertion with relation using REPLICA IDENTITY FULL in subscriber In a logical replication subscriber, a table using REPLICA IDENTITY FULL which has a primary key would try to use the primary key's index available to scan for a tuple, but an assertion only assumed as correct the case of an index associated to REPLICA IDENTITY USING INDEX. This commit corrects the assertion so as the use of a primary key index is a valid case.
Reported-by: Dilip Kumar Analyzed-by: Dilip Kumar Author: Euler Taveira Reviewed-by: Michael Paquier, Masahiko Sawada Discussion: https://postgr.es/m/cafitn-u64s5buipl1q5kwphnd0hrnf1oe-bzxnios5zo84i...@mail.gmail.com Backpatch-through: 10 Branch ------ REL_12_STABLE Details ------- https://git.postgresql.org/pg/commitdiff/b4ded2f227f3ec1144a4691d2326eb90174447db Modified Files -------------- src/backend/executor/execReplication.c | 3 ++- src/test/subscription/t/001_rep_changes.pl | 15 ++++++++++++++- 2 files changed, 16 insertions(+), 2 deletions(-)
