]> granicus.if.org Git - postgresql/commit
Fix buffer pin leak in heap update redo routine.
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>
Wed, 27 Mar 2013 19:51:27 +0000 (21:51 +0200)
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>
Wed, 27 Mar 2013 20:05:29 +0000 (22:05 +0200)
commitf4ecfbcaf046845b58c551184449e8e438d44c69
treef031fa470577923a5d6b7038f2854f477a5eb9cb
parent30de42d254d7b31161bfd0388677712694108906
Fix buffer pin leak in heap update redo routine.

In a heap update, if the old and new tuple were on different pages, and the
new page no longer existed (because it was subsequently truncated away by
vacuum), heap_xlog_update forgot to release the pin on the old buffer. This
bug was introduced by the "Fix multiple problems in WAL replay" patch,
commit 3bbf668de9f1bc172371681e80a4e769b6d014c8 (on master branch).

With full_page_writes=off, this triggered an "incorrect local pin count"
error later in replay, if the old page was vacuumed.

This fixes bug #7969, reported by Yunong Xiao. Backpatch to 9.0, like the
commit that introduced this bug.
src/backend/access/heap/heapam.c