Add converting logic to ActionsDAG.

This commit is contained in:
Nikolai Kochetov 2020-11-17 17:54:37 +03:00
parent 54f0338e22
commit 97d07ae3a9

View File

@ -157,7 +157,7 @@ const ActionsDAG::Node & ActionsDAG::addFunction(
for (const auto & name : argument_names) for (const auto & name : argument_names)
children.push_back(&getNode(name)); children.push_back(&getNode(name));
addFunction(function, children, std::move(result_name), false); return addFunction(function, children, std::move(result_name), false);
} }
ActionsDAG::Node & ActionsDAG::addFunction( ActionsDAG::Node & ActionsDAG::addFunction(