Re: two_phase commit parameter used in subscription for a publication which is on < 15.

2021-09-27 Thread Amit Kapila
On Mon, Sep 27, 2021 at 11:40 PM Euler Taveira wrote: > > On Mon, Sep 27, 2021, at 4:09 AM, tushar wrote: > > so are we silently ignoring this parameter as it is not supported on v14 ? > > Yes. Because two_phase is a supported parameter for v15 (your current > subscriber). The issue is that this

Re: two_phase commit parameter used in subscription for a publication which is on < 15.

2021-09-27 Thread Euler Taveira
On Mon, Sep 27, 2021, at 4:09 AM, tushar wrote: > so are we silently ignoring this parameter as it is not supported on v14 ? Yes. Because two_phase is a supported parameter for v15 (your current subscriber). The issue is that this parameter are not forwarded to publisher because its version (v14)

two_phase commit parameter used in subscription for a publication which is on < 15.

2021-09-27 Thread tushar
Hi, Please refer to this scenario CASE 1- HEAD (publication)-> HEAD (Subscription) CASE 2 - PG 14 (Publication) ->HEAD (Subscription) Test-case - Publication = create table t(n int); create publication p for table t; Subscription = create table t(n int); create subscription s connection