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

Method execute

src/Interpreters/InterpreterSelectWithUnionQuery.cpp:392–404  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

390}
391
392BlockIO InterpreterSelectWithUnionQuery::execute()
393{
394 BlockIO res;
395
396 QueryPlan query_plan;
397 buildQueryPlan(query_plan);
398
399 auto builder = query_plan.buildQueryPipeline(QueryPlanOptimizationSettings(context), BuildQueryPipelineSettings(context));
400
401 res.pipeline = QueryPipelineBuilder::getPipeline(std::move(*builder));
402 setQuota(res.pipeline);
403 return res;
404}
405
406void InterpreterSelectWithUnionQuery::ignoreWithTotals()
407{

Callers

nothing calls this directly

Tested by

no test coverage detected