Re: [PATCH] BUG FIX: inconsistent page found in BRIN_REGULAR_PAGE - Mailing list pgsql-bugs

From Alvaro Herrera
Subject Re: [PATCH] BUG FIX: inconsistent page found in BRIN_REGULAR_PAGE
Date
Msg-id 20221223163509.rwxpzy6xfemppkxd@alvherre.pgsql
Whole thread Raw
In response to [PATCH] BUG FIX: inconsistent page found in BRIN_REGULAR_PAGE  (Karina Litskevich <litskevichkarina@gmail.com>)
Responses Re: [PATCH] BUG FIX: inconsistent page found in BRIN_REGULAR_PAGE
List pgsql-bugs
Hello,

On 2022-Dec-23, Karina Litskevich wrote:

> Is there any special reason to read WAL records until the last inserted
> record?

Hmm, no, there's no good reason to do it that way.

> It seems that in some rare situations on slower machines this test can fail.
> If any background process inserts a WAL record before lsn('insert')
> and this record isn't flushed before
> pg_get_wal_records_info('$start_lsn', '$end_lsn'),
> pg_get_wal_records_info('$start_lsn', '$end_lsn') ends with ERROR
> "cannot accept future end LSN" as it works only if record with end LSN
> is inserted.

Hmm.  I've never seen that, but it sounds plausible.

> I attached two patches with two ways of fixing this minor issue.

> -my $end_lsn = $whiskey->lsn('insert');
> +my $end_lsn = $whiskey->lsn('flush');

Thank you, I used this one.

Regards

-- 
Álvaro Herrera         PostgreSQL Developer  —  https://www.EnterpriseDB.com/



pgsql-bugs by date:

Previous
From: Karina Litskevich
Date:
Subject: [PATCH] BUG FIX: inconsistent page found in BRIN_REGULAR_PAGE
Next
From: PG Bug reporting form
Date:
Subject: BUG #17730: Trigger Issue