Remove custom redundant full page write description from GIN
Kirill Reshke <reshkekirill@gmail.com>
From: Kirill Reshke <reshkekirill@gmail.com>
To: PostgreSQL Hackers <pgsql-hackers@lists.postgresql.org>
Date: 2025-09-15T12:56:08Z
Lists: pgsql-hackers
Commits
Same data as JSON:
GET /api/v1/messages/:b64id/commits
the thread's linked commits as JSON, with link sources.
API reference →
-
Improve description of some WAL records for GIN
- 138da727a174 19 (unreleased) landed
-
Add comment in ginxlog.h about block used with ginxlogInsertListPage
- 42c6b74d8928 19 (unreleased) landed
-
Remove block information from description of some WAL records for GIN
- 7072a8855e84 19 (unreleased) landed
-
Remove useless pointer update in ginxlog.c
- 3f431109dc63 19 (unreleased) landed
Attachments
- v1-0001-Remove-custom-full-page-write-decribption-from-GI.patch (application/octet-stream) patch v1-0001
Hi hackers! While reading waldump output for the GIN index I noticed $subj. Here is an example: ``` rmgr: Gin len (rec/tot): 53/ 113, tx: 788, lsn: 0/01D2B700, prev 0/01D2B590, desc: INSERT isdata: F isleaf: T (full page image), blkref #0: rel 1663/16384/32857 blk 1 FPW ``` Notice we have "(full page image)" from gindesc and "FPW" from generic waldump code I suggest removing this custom FPW support. -- Best regards, Kirill Reshke