MCPcopy Create free account
hub / github.com/ClickHouse/ClickHouse / execute

Method execute

src/Interpreters/InterpreterSelectIntersectExceptQuery.cpp:184–198  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

182}
183
184BlockIO InterpreterSelectIntersectExceptQuery::execute()
185{
186 BlockIO res;
187
188 QueryPlan query_plan;
189 buildQueryPlan(query_plan);
190
191 auto builder = query_plan.buildQueryPipeline(QueryPlanOptimizationSettings(context), BuildQueryPipelineSettings(context));
192
193 res.pipeline = QueryPipelineBuilder::getPipeline(std::move(*builder));
194
195 setQuota(res.pipeline);
196
197 return res;
198}
199
200void InterpreterSelectIntersectExceptQuery::ignoreWithTotals()
201{

Callers

nothing calls this directly

Tested by

no test coverage detected