| 157 | } |
| 158 | |
| 159 | BlockIO InterpreterSelectIntersectExceptQuery::execute() |
| 160 | { |
| 161 | BlockIO res; |
| 162 | |
| 163 | QueryPlan query_plan; |
| 164 | buildQueryPlan(query_plan); |
| 165 | |
| 166 | auto pipeline = query_plan.buildQueryPipeline( |
| 167 | QueryPlanOptimizationSettings::fromContext(context), |
| 168 | BuildQueryPipelineSettings::fromContext(context)); |
| 169 | |
| 170 | res.pipeline = std::move(*pipeline); |
| 171 | res.pipeline.addInterpreterContext(context); |
| 172 | setQuota(res.pipeline); |
| 173 | return res; |
| 174 | } |
| 175 | |
| 176 | void InterpreterSelectIntersectExceptQuery::ignoreWithTotals() |
| 177 | { |
nothing calls this directly
no test coverage detected