| 84 | } |
| 85 | |
| 86 | bool FilterContext::Eval(TupleRow* row) const noexcept { |
| 87 | void* val = expr_eval->GetValue(row); |
| 88 | return filter->Eval(val, expr_eval->root().type()); |
| 89 | } |
| 90 | |
| 91 | void FilterContext::Insert(TupleRow* row) const noexcept { |
| 92 | if (filter->is_bloom_filter()) { |
no test coverage detected