Fix condition in e9e441c9fa

Comment is right, but if - not.
This commit is contained in:
Teodor Sigaev 2016-04-02 18:36:46 +03:00
parent 62b5cd234b
commit 9c50372d20
1 changed files with 1 additions and 1 deletions

View File

@ -112,7 +112,7 @@ blbulkdelete(IndexVacuumInfo *info, IndexBulkDeleteResult *stats,
* Add page to notFullPage list if we will not mark page as deleted and
* there is a free space on it
*/
if (BloomPageGetMaxOffset(page) == 0 &&
if (BloomPageGetMaxOffset(page) != 0 &&
BloomPageGetFreeSpace(&state, page) > state.sizeOfBloomTuple &&
countPage < BloomMetaBlockN)
notFullPage[countPage++] = blkno;