mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 13:13:36 +00:00
Fix build.
This commit is contained in:
parent
03e0a5ddbc
commit
61070a03cd
@ -88,7 +88,7 @@ QueryPipelinePtr QueryPlan::buildQueryPipeline()
|
|||||||
QueryPipelinePtr last_pipeline;
|
QueryPipelinePtr last_pipeline;
|
||||||
|
|
||||||
std::stack<Frame> stack;
|
std::stack<Frame> stack;
|
||||||
stack.push({.node = root});
|
stack.push(Frame{.node = root});
|
||||||
|
|
||||||
while (!stack.empty())
|
while (!stack.empty())
|
||||||
{
|
{
|
||||||
@ -104,7 +104,7 @@ QueryPipelinePtr QueryPlan::buildQueryPipeline()
|
|||||||
stack.pop();
|
stack.pop();
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
stack.push({.node = frame.node->children[next_child]});
|
stack.push(Frame{.node = frame.node->children[next_child]});
|
||||||
}
|
}
|
||||||
|
|
||||||
return last_pipeline;
|
return last_pipeline;
|
||||||
|
Loading…
Reference in New Issue
Block a user