]> granicus.if.org Git - postgresql/commit
Repair PANIC condition in hash indexes when a previous index extension attempt
authorTom Lane <tgl@sss.pgh.pa.us>
Thu, 19 Apr 2007 20:24:18 +0000 (20:24 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Thu, 19 Apr 2007 20:24:18 +0000 (20:24 +0000)
commitd184462ae04993d00b84d0dfe6a8fcecff375c72
tree47c12063227cea5fd02b2717ac9d776d118dda98
parent9e7ea859846f24f53842808593e82149ede1f7e2
Repair PANIC condition in hash indexes when a previous index extension attempt
failed (due to lock conflicts or out-of-space).  We might have already
extended the index's filesystem EOF before failing, causing the EOF to be
beyond what the metapage says is the last used page.  Hence the invariant
maintained by the code needs to be "EOF is at or beyond last used page",
not "EOF is exactly the last used page".  Problem was created by my patch
of 2006-11-19 that attempted to repair bug #2737.  Since that was
back-patched to 7.4, this needs to be as well.  Per report and test case
from Vlastimil Krejcir.
src/backend/access/hash/README
src/backend/access/hash/hashovfl.c
src/backend/access/hash/hashpage.c
src/include/access/hash.h