Skip to content

Commit

Permalink
Fix for issue #95
Browse files Browse the repository at this point in the history
  • Loading branch information
CerielJacobs committed Feb 11, 2022
1 parent 90a98f7 commit d83b00c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vlog/forward/segment.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ size_t Segment::estimate(const uint8_t nconstantsToFilter,
for (int j = 0; j < nconstantsToFilter; ++j) {
if (readers[j]->next() != valuesConstantsToFilter[j]) {
ok = false;
break;
// break; // No, should read all columns
}
}
if (ok)
Expand Down

0 comments on commit d83b00c

Please sign in to comment.