mirror of
https://github.com/postgres/postgres.git
synced 2026-02-26 11:21:03 -05:00
Fix off-by-one in newly-introdcued GIN assertion.
Spotted by Alexander Korotkov
This commit is contained in:
parent
398cf255ad
commit
a8f374849f
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Reference in a new issue