| 134 | } |
| 135 | |
| 136 | void FilterContext::MaterializeValues() const { |
| 137 | if (filter->is_min_max_filter() && local_min_max_filter != nullptr) { |
| 138 | local_min_max_filter->MaterializeValues(); |
| 139 | } else if (filter->is_in_list_filter() && local_in_list_filter != nullptr) { |
| 140 | local_in_list_filter->MaterializeValues(); |
| 141 | } |
| 142 | } |
| 143 | |
| 144 | // An example of the generated code for the following query: |
| 145 | // |
no test coverage detected