Skip to content

Commit be24942

Browse files
committed
Fix two bugs in WAL-logging of GIN pending-list pages.
In writeListPage, never take a full-page image of the page, because we have all the information required to re-initialize in the WAL record anyway. Before this fix, a full-page image was always generated, unless full_page_writes=off, because when the page is initialized its LSN is always 0. In stable-branches, keep the code to restore the backup blocks if they exist, in case that the WAL is generated with an older minor version, but in master Assert that there are no full-page images. In the redo routine, add missing "off++". Otherwise the tuples are added to the page in reverse order. That happens to be harmless because we always scan and remove all the tuples together, but it was clearly wrong. Also, it was masked by the first bug unless full_page_writes=off, because the page was always restored from a full-page image. Backpatch to all supported versions.
1 parent 82fbd88 commit be24942

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

src/backend/access/gin/ginfast.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,7 @@ writeListPage(Relation index, Buffer buffer,
119119
rdata[0].len = sizeof(ginxlogInsertListPage);
120120
rdata[0].next = rdata + 1;
121121

122-
rdata[1].buffer = buffer;
123-
rdata[1].buffer_std = true;
122+
rdata[1].buffer = InvalidBuffer;
124123
rdata[1].data = workspace;
125124
rdata[1].len = size;
126125
rdata[1].next = NULL;

src/backend/access/gin/ginxlog.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -587,6 +587,11 @@ ginRedoInsertListPage(XLogRecPtr lsn, XLogRecord *record)
587587
tupsize;
588588
IndexTuple tuples = (IndexTuple) (XLogRecGetData(record) + sizeof(ginxlogInsertListPage));
589589

590+
/*
591+
* If we have a full-page image, we're done. (As the code stands, we
592+
* never create full-page images, but we used to. Cope if we're
593+
* reading WAL generated with an older minor version.)
594+
*/
590595
if (record->xl_info & XLR_BKP_BLOCK_1)
591596
return;
592597

@@ -617,6 +622,7 @@ ginRedoInsertListPage(XLogRecPtr lsn, XLogRecord *record)
617622
elog(ERROR, "failed to add item to index page");
618623

619624
tuples = (IndexTuple) (((char *) tuples) + tupsize);
625+
off++;
620626
}
621627

622628
PageSetLSN(page, lsn);

0 commit comments

Comments
 (0)