Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 9c50372

Browse files
committed
Fix condition in e9e441c
Comment is right, but if - not.
1 parent 62b5cd2 commit 9c50372

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contrib/bloom/blvacuum.c

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

0 commit comments

Comments
 (0)