]> granicus.if.org Git - postgresql/commit
BRIN: fix bug in xlog backup block counting
authorAlvaro Herrera <alvherre@alvh.no-ip.org>
Mon, 10 Nov 2014 21:13:49 +0000 (18:13 -0300)
committerAlvaro Herrera <alvherre@alvh.no-ip.org>
Mon, 10 Nov 2014 21:13:49 +0000 (18:13 -0300)
commita590f266e44c492d2a252ab9dee0cd88dbe06dc5
tree30a99f05d925314c4c18d0491f0b866acec1ac43
parentc8df9477f8ce48b202de989984f90dd78e1bba31
BRIN: fix bug in xlog backup block counting

The code that generates the BRIN_XLOG_UPDATE removes the buffer
reference when the page that's target for the updated tuple is freshly
initialized.  This is a pretty usual optimization, but was breaking the
case where the revmap buffer, which is referenced in the same WAL
record, is getting a backup block: the replay code was using backup
block index 1, which is not valid when the update target buffer gets
pruned; the revmap buffer gets assigned 0 instead.  Make sure to use the
correct backup block index for revmap when replaying.

Bug reported by Fujii Masao.
src/backend/access/brin/brin_xlog.c