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

Method execute

src/Interpreters/InterpreterSelectIntersectExceptQuery.cpp:159–174  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

157}
158
159BlockIO 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
176void InterpreterSelectIntersectExceptQuery::ignoreWithTotals()
177{

Callers

nothing calls this directly

Calls 2

buildQueryPipelineMethod · 0.80
addInterpreterContextMethod · 0.45

Tested by

no test coverage detected