pgsql: Use GetXLogInsertEndRecPtr in gistGetFakeLSN - Mailing list pgsql-committers

From Tomas Vondra
Subject pgsql: Use GetXLogInsertEndRecPtr in gistGetFakeLSN
Date
Msg-id E1w1Azw-0002Pp-23@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Use GetXLogInsertEndRecPtr in gistGetFakeLSN

The function used GetXLogInsertRecPtr() to generate the fake LSN. Most
of the time this is the same as what XLogInsert() would return, and so
it works fine with the XLogFlush() call. But if the last record ends at
a page boundary, GetXLogInsertRecPtr() returns LSN pointing after the
page header. In such case XLogFlush() fails with errors like this:

  ERROR: xlog flush request 0/01BD2018 is not satisfied --- flushed only to 0/01BD2000

Such failures are very hard to trigger, particularly outside aggressive
test scenarios.

Fixed by introducing GetXLogInsertEndRecPtr(), returning the correct LSN
without skipping the header. This is the same as GetXLogInsertRecPtr(),
except that it calls XLogBytePosToEndRecPtr().

Initial investigation by me, root cause identified by Andres Freund.

This is a long-standing bug in gistGetFakeLSN(), probably introduced by
c6b92041d38 in PG13. Backpatch to all supported versions.

Reported-by: Peter Geoghegan <pg@bowt.ie>
Reviewed-by: Andres Freund <andres@anarazel.de>
Reviewed-by: Noah Misch <noah@leadboat.com>
Discussion: https://postgr.es/m/vf4hbwrotvhbgcnknrqmfbqlu75oyjkmausvy66ic7x7vuhafx@e4rvwavtjswo
Backpatch-through: 14

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/b1f14c9672026a647b826455f03552ca30846e48

Modified Files
--------------
src/backend/access/gist/gistutil.c |  2 +-
src/backend/access/transam/xlog.c  | 16 ++++++++++++++++
src/include/access/xlog.h          |  1 +
3 files changed, 18 insertions(+), 1 deletion(-)


pgsql-committers by date:

Previous
From: Jeff Davis
Date:
Subject: Re: pgsql: CREATE SUBSCRIPTION ... SERVER.
Next
From: Tomas Vondra
Date:
Subject: pgsql: Use GetXLogInsertEndRecPtr in gistGetFakeLSN