mirror of
https://github.com/postgres/postgres.git
synced 2025-06-05 00:02:04 -04:00
Fix condition in e9e441c9fac6cbc0510cded6abb9d0e6b646ecaf
Comment is right, but if - not.
This commit is contained in:
parent
62b5cd234b
commit
9c50372d20
@ -112,7 +112,7 @@ blbulkdelete(IndexVacuumInfo *info, IndexBulkDeleteResult *stats,
|
|||||||
* Add page to notFullPage list if we will not mark page as deleted and
|
* Add page to notFullPage list if we will not mark page as deleted and
|
||||||
* there is a free space on it
|
* there is a free space on it
|
||||||
*/
|
*/
|
||||||
if (BloomPageGetMaxOffset(page) == 0 &&
|
if (BloomPageGetMaxOffset(page) != 0 &&
|
||||||
BloomPageGetFreeSpace(&state, page) > state.sizeOfBloomTuple &&
|
BloomPageGetFreeSpace(&state, page) > state.sizeOfBloomTuple &&
|
||||||
countPage < BloomMetaBlockN)
|
countPage < BloomMetaBlockN)
|
||||||
notFullPage[countPage++] = blkno;
|
notFullPage[countPage++] = blkno;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user