| 67 | } |
| 68 | |
| 69 | bool FilterStats::HasRejectedRows() const { |
| 70 | for (const auto& entry : counters) { |
| 71 | if (entry.second.rejected->value() > 0) { |
| 72 | return true; |
| 73 | } |
| 74 | } |
| 75 | return false; |
| 76 | } |
| 77 | |
| 78 | Status FilterContext::CloneFrom(const FilterContext& from, ObjectPool* pool, |
| 79 | RuntimeState* state, MemPool* expr_perm_pool, MemPool* expr_results_pool) { |