mirror of
https://github.com/postgres/postgres.git
synced 2025-11-12 05:01:15 +03:00
Fix off-by-one in newly-introdcued GIN assertion.
Spotted by Alexander Korotkov
This commit is contained in:
@@ -815,7 +815,7 @@ dataPlaceToPageLeafRecompress(Buffer buf, disassembledLeaf *leaf,
|
|||||||
ptr += segsize;
|
ptr += segsize;
|
||||||
newsize += segsize;
|
newsize += segsize;
|
||||||
}
|
}
|
||||||
Assert(newsize < GinDataLeafMaxContentSize);
|
Assert(newsize <= GinDataLeafMaxContentSize);
|
||||||
GinDataLeafPageSetPostingListSize(page, newsize);
|
GinDataLeafPageSetPostingListSize(page, newsize);
|
||||||
GinPageSetCompressed(page); /* in case it was in pre-9.4 format before */
|
GinPageSetCompressed(page); /* in case it was in pre-9.4 format before */
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user