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

Method setQueryPlanStep

src/Processors/IProcessor.cpp:39–49  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

37}
38
39void IProcessor::setQueryPlanStep(IQueryPlanStep * step, size_t group)
40{
41 query_plan_step = step;
42 query_plan_step_group = group;
43 if (step)
44 {
45 plan_step_name = step->getName();
46 plan_step_description = step->getStepDescription();
47 step_uniq_id = step->getUniqID();
48 }
49}
50
51IProcessor::Status IProcessor::prepare()
52{

Callers 2

updatePipelineMethod · 0.80
detachProcessorsMethod · 0.80

Calls 3

getStepDescriptionMethod · 0.80
getNameMethod · 0.45
getUniqIDMethod · 0.45

Tested by

no test coverage detected