When combining classic indices, for each batch the combinations of
rows from each constituent index are written to an output block. The
output block is reused for next batch.
As we use bitwise OR operation to combine rows from the constituent
indices, the output block should be reset to all 0s before being
reused. Otherwise, previous set bits will be carried over to next
batch and accumulating false positives till the end of the batch
processing loop.
When combining classic indices, for each batch the combinations of rows from each constituent index are written to an output block. The output block is reused for next batch.
As we use bitwise OR operation to combine rows from the constituent indices, the output block should be reset to all 0s before being reused. Otherwise, previous set bits will be carried over to next batch and accumulating false positives till the end of the batch processing loop.