On Sat, Aug 8, 2020 at 11:03 AM Amit Kapila <amit.kapil...@gmail.com> wrote: > > On Sat, Aug 8, 2020 at 7:59 AM Amit Kapila <akap...@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.