Commit ee68a441 authored by Tom Lane's avatar Tom Lane

Improve comment.

parent 2af72cef
...@@ -671,9 +671,10 @@ gin_redo(XLogRecPtr lsn, XLogRecord *record) ...@@ -671,9 +671,10 @@ gin_redo(XLogRecPtr lsn, XLogRecord *record)
uint8 info = record->xl_info & ~XLR_INFO_MASK; uint8 info = record->xl_info & ~XLR_INFO_MASK;
/* /*
* GIN indexes do not require any conflict processing. * GIN indexes do not require any conflict processing. NB: If we ever
* implement a similar optimization as we have in b-tree, and remove
* killed tuples outside VACUUM, we'll need to handle that here.
*/ */
RestoreBkpBlocks(lsn, record, false); RestoreBkpBlocks(lsn, record, false);
topCtx = MemoryContextSwitchTo(opCtx); topCtx = MemoryContextSwitchTo(opCtx);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment