]> granicus.if.org Git - postgresql/commit
Fix bundle bugs of GIN:
authorTeodor Sigaev <teodor@sigaev.ru>
Mon, 4 Jun 2007 15:56:28 +0000 (15:56 +0000)
committerTeodor Sigaev <teodor@sigaev.ru>
Mon, 4 Jun 2007 15:56:28 +0000 (15:56 +0000)
commit853d1c3103fa961ae6219f0281885b345593d101
tree464fedaf8f2bd9ee41344e57c4be16ec874155e5
parentaae5403278f995e240d956848cdf95fc173693ae
Fix bundle bugs of GIN:
- Fix possible deadlock between UPDATE and VACUUM queries. Bug never was
  observed in 8.2, but it still exist there. HEAD is more sensitive to
  bug after recent "ring" of buffer improvements.
- Fix WAL creation: if parent page is stored as is after split then
  incomplete split isn't removed during replay. This happens rather rare, only
  on large tables with a lot of updates/inserts.
- Fix WAL replay: there was wrong test of XLR_BKP_BLOCK_* for left
  page after deletion of page. That causes wrong rightlink field: it pointed
  to deleted page.
- add checking of match of clearing incomplete split
- cleanup incomplete split list after proceeding

All of this chages doesn't change on-disk storage, so backpatch...
But second point may be an issue for replaying logs from previous version.
src/backend/access/gin/gindatapage.c
src/backend/access/gin/ginentrypage.c
src/backend/access/gin/ginget.c
src/backend/access/gin/ginvacuum.c
src/backend/access/gin/ginxlog.c