diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2012-02-04 22:37:34 -0500 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2012-02-04 22:37:34 -0500 |
commit | ee68a44106fa89b8efb2f21b71c3fcafaaf48851 (patch) | |
tree | a638530a09cd6bfdf23c4c7c5dd14efbdaf3409a /src | |
parent | 2af72cefeaa15e27277d327783fdec2748d9b758 (diff) | |
download | postgresql-ee68a44106fa89b8efb2f21b71c3fcafaaf48851.tar.gz postgresql-ee68a44106fa89b8efb2f21b71c3fcafaaf48851.zip |
Improve comment.
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/access/gin/ginxlog.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/backend/access/gin/ginxlog.c b/src/backend/access/gin/ginxlog.c index 94051aa1c3d..388589beac3 100644 --- a/src/backend/access/gin/ginxlog.c +++ b/src/backend/access/gin/ginxlog.c @@ -671,9 +671,10 @@ gin_redo(XLogRecPtr lsn, XLogRecord *record) 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); topCtx = MemoryContextSwitchTo(opCtx); |