]> granicus.if.org Git - postgresql/commit
Cleanup of new b-tree page deletion code.
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>
Wed, 23 Apr 2014 07:15:06 +0000 (10:15 +0300)
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>
Wed, 23 Apr 2014 07:19:54 +0000 (10:19 +0300)
commit4fafc4ecd9e4d224d92c4a8549c5646860787a5d
treeff1cb07f1140ed9ae19f6a66ab94d154b9bbf5ee
parentd26b042ce577a4012b9798528f0b1bcfa6e502eb
Cleanup of new b-tree page deletion code.

When marking a branch as half-dead, a pointer to the top of the branch is
stored in the leaf block's hi-key. During normal operation, the high key
was left in place, and the block number was just stored in the ctid field
of the high key tuple, but in WAL replay, the high key was recreated as a
truncated tuple with zero columns. For the sake of easier debugging, also
truncate the tuple in normal operation, so that the page is identical
after WAL replay. Also, rename the 'downlink' field in the WAL record to
'topparent', as that seems like a more descriptive name. And make sure
it's set to invalid when unlinking the leaf page.
src/backend/access/nbtree/nbtpage.c
src/backend/access/nbtree/nbtxlog.c
src/backend/access/rmgrdesc/nbtdesc.c
src/include/access/nbtree.h