mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 08:32:02 +00:00
Fixing build
This commit is contained in:
parent
57255eb56c
commit
d564fe4e64
@ -356,7 +356,7 @@ static void extractPathImpl(const ActionsDAG::Node & node, Paths & res, ContextP
|
|||||||
if (!isPathNode(node.children.at(0)))
|
if (!isPathNode(node.children.at(0)))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
auto value = node.children.at(1);
|
const auto * value = node.children.at(1);
|
||||||
if (!value->column)
|
if (!value->column)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
@ -504,7 +504,7 @@ void ReadFromSystemZooKeeper::fillData(MutableColumns & res_columns) const
|
|||||||
}
|
}
|
||||||
|
|
||||||
ReadFromSystemZooKeeper::ReadFromSystemZooKeeper(const Block & header, SelectQueryInfo & query_info, ContextPtr context_)
|
ReadFromSystemZooKeeper::ReadFromSystemZooKeeper(const Block & header, SelectQueryInfo & query_info, ContextPtr context_)
|
||||||
: SourceStepWithFilter({.header = std::move(header)})
|
: SourceStepWithFilter({.header = header})
|
||||||
, storage_limits(query_info.storage_limits)
|
, storage_limits(query_info.storage_limits)
|
||||||
, context(std::move(context_))
|
, context(std::move(context_))
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user