Re: pgsql: Add ALTER SUBSCRIPTION ... SKIP.

From: Amit Kapila <amit(dot)kapila16(at)gmail(dot)com>
To: Andres Freund <andres(at)anarazel(dot)de>
Cc: Amit Kapila <akapila(at)postgresql(dot)org>, pgsql-committers <pgsql-committers(at)lists(dot)postgresql(dot)org>
Subject: Re: pgsql: Add ALTER SUBSCRIPTION ... SKIP.
Date: 2022-03-23 01:56:28
Message-ID: CAA4eK1+-kY+oZE-wniiOHfS4o6wb9yTM0sFhZHhzaoRSizxsUQ@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers pgsql-hackers

On Wed, Mar 23, 2022 at 5:29 AM Andres Freund <andres(at)anarazel(dot)de> wrote:
>
> Hi,
>
> On 2022-03-22 01:56:03 +0000, Amit Kapila wrote:
> > Add ALTER SUBSCRIPTION ... SKIP.
> >
> > This feature allows skipping the transaction on subscriber nodes.
> >
> > If incoming change violates any constraint, logical replication stops
> > until it's resolved. Currently, users need to either manually resolve the
> > conflict by updating a subscriber-side database or by using function
> > pg_replication_origin_advance() to skip the conflicting transaction. This
> > commit introduces a simpler way to skip the conflicting transactions.
> >
> > The user can specify LSN by ALTER SUBSCRIPTION ... SKIP (lsn = XXX),
> > which allows the apply worker to skip the transaction finished at
> > specified LSN. The apply worker skips all data modification changes within
> > the transaction.
>
> This was missing an include of xlogdefs.h in pg_subscription.h, thus failing
> in headerscheck. See e.g.
> https://buildfarm.postgresql.org/cgi-bin/show_log.pl?nm=crake&dt=2022-03-22%2022%3A22%3A05
>
> I've pushed the trivial fix for that. I'll propose adding headerscheck to CI /
> cfbot.
>

Thanks.

--
With Regards,
Amit Kapila.

In response to

Browse pgsql-committers by date

  From Date Subject
Next Message Thomas Munro 2022-03-23 02:20:05 pgsql: Try to stabilize vacuum test.
Previous Message Andrew Dunstan 2022-03-23 00:19:26 pgsql: Temporarily disable installcheck for test_oat_hooks module

Browse pgsql-hackers by date

  From Date Subject
Next Message Michael Paquier 2022-03-23 02:03:46 Re: Allow file inclusion in pg_hba and pg_ident files
Previous Message Tom Lane 2022-03-23 01:07:30 Re: SQL/JSON: functions