Fix off-by-one in newly-introdcued GIN assertion.

Spotted by Alexander Korotkov
pull/6/head
Heikki Linnakangas 12 years ago
parent 398cf255ad
commit a8f374849f
  1. 2
      src/backend/access/gin/gindatapage.c

@ -815,7 +815,7 @@ dataPlaceToPageLeafRecompress(Buffer buf, disassembledLeaf *leaf,
ptr += segsize;
newsize += segsize;
}
Assert(newsize < GinDataLeafMaxContentSize);
Assert(newsize <= GinDataLeafMaxContentSize);
GinDataLeafPageSetPostingListSize(page, newsize);
GinPageSetCompressed(page); /* in case it was in pre-9.4 format before */

Loading…
Cancel
Save