Re: pgsql: Implement streaming mode in ReorderBuffer. - Mailing list pgsql-committers

From Amit Kapila
Subject Re: pgsql: Implement streaming mode in ReorderBuffer.
Date
Msg-id CAA4eK1LPtd=ms5JtWRVAP+a0u=YJdK0sT+Y6yd8SfdqTa5aqQg@mail.gmail.com
Whole thread Raw
In response to Re: pgsql: Implement streaming mode in ReorderBuffer.  (Amit Kapila <amit.kapila16@gmail.com>)
List pgsql-committers
On Sat, Aug 8, 2020 at 11:03 AM Amit Kapila <amit.kapila16@gmail.com> wrote:
>
> On Sat, Aug 8, 2020 at 7:59 AM Amit Kapila <akapila@postgresql.org> wrote:
> >
> > Implement streaming mode in ReorderBuffer.
> >
>
> There is one failure [1] due to this commit.  Looking into same.
>

The problem seems to be due to some parallel transactions (like
autovacuum) WAL which will be shown as an empty transaction as that
doesn't perform any Insert/Update/Delete to the non-catalog table. The
solution is to skip empty transactions while getting streamed changes.
We normally do this in other tests but missed doing it for the
streaming changes test. I'll push the fix in some time after some
verification.

-- 
With Regards,
Amit Kapila.



pgsql-committers by date:

Previous
From: Peter Eisentraut
Date:
Subject: pgsql: Add some const decorations
Next
From: Amit Kapila
Date:
Subject: pgsql: Fix the logical streaming test.