mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-02 12:32:04 +00:00
2833 lines
90 KiB
C++
2833 lines
90 KiB
C++
#include <Interpreters/ActionsDAG.h>
|
|
|
|
#include <Analyzer/FunctionNode.h>
|
|
#include <DataTypes/DataTypeArray.h>
|
|
#include <DataTypes/DataTypeString.h>
|
|
#include <Columns/ColumnConst.h>
|
|
#include <Functions/IFunction.h>
|
|
#include <Functions/IFunctionAdaptors.h>
|
|
#include <Functions/materialize.h>
|
|
#include <Functions/FunctionsLogical.h>
|
|
#include <Functions/CastOverloadResolver.h>
|
|
#include <Functions/indexHint.h>
|
|
#include <Interpreters/Context.h>
|
|
#include <Interpreters/ArrayJoinAction.h>
|
|
#include <IO/WriteBufferFromString.h>
|
|
#include <IO/Operators.h>
|
|
#include <Core/SortDescription.h>
|
|
#include <Planner/PlannerActionsVisitor.h>
|
|
|
|
#include <stack>
|
|
#include <base/sort.h>
|
|
#include <Common/JSONBuilder.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
namespace ErrorCodes
|
|
{
|
|
extern const int LOGICAL_ERROR;
|
|
extern const int UNKNOWN_IDENTIFIER;
|
|
extern const int TYPE_MISMATCH;
|
|
extern const int NUMBER_OF_COLUMNS_DOESNT_MATCH;
|
|
extern const int THERE_IS_NO_COLUMN;
|
|
extern const int ILLEGAL_COLUMN;
|
|
extern const int NOT_FOUND_COLUMN_IN_BLOCK;
|
|
extern const int BAD_ARGUMENTS;
|
|
}
|
|
|
|
namespace
|
|
{
|
|
|
|
std::pair<ColumnsWithTypeAndName, bool> getFunctionArguments(const ActionsDAG::NodeRawConstPtrs & children)
|
|
{
|
|
size_t num_arguments = children.size();
|
|
|
|
bool all_const = true;
|
|
ColumnsWithTypeAndName arguments(num_arguments);
|
|
|
|
for (size_t i = 0; i < num_arguments; ++i)
|
|
{
|
|
const auto & child = *children[i];
|
|
|
|
ColumnWithTypeAndName argument;
|
|
argument.column = child.column;
|
|
argument.type = child.result_type;
|
|
argument.name = child.result_name;
|
|
|
|
if (!argument.column || !isColumnConst(*argument.column))
|
|
all_const = false;
|
|
|
|
arguments[i] = std::move(argument);
|
|
}
|
|
return { std::move(arguments), all_const };
|
|
}
|
|
|
|
bool isConstantFromScalarSubquery(const ActionsDAG::Node * node)
|
|
{
|
|
std::stack<const ActionsDAG::Node *> stack;
|
|
stack.push(node);
|
|
while (!stack.empty())
|
|
{
|
|
const auto * arg = stack.top();
|
|
stack.pop();
|
|
|
|
if (arg->column && isColumnConst(*arg->column))
|
|
continue;
|
|
|
|
while (arg->type == ActionsDAG::ActionType::ALIAS)
|
|
arg = arg->children.at(0);
|
|
|
|
if (arg->type != ActionsDAG::ActionType::FUNCTION)
|
|
return false;
|
|
|
|
if (arg->function_base->getName() == "__scalarSubqueryResult")
|
|
continue;
|
|
|
|
if (arg->children.empty() || !arg->function_base->isSuitableForConstantFolding())
|
|
return false;
|
|
|
|
for (const auto * child : arg->children)
|
|
stack.push(child);
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
}
|
|
|
|
void ActionsDAG::Node::toTree(JSONBuilder::JSONMap & map) const
|
|
{
|
|
map.add("Node Type", magic_enum::enum_name(type));
|
|
|
|
if (result_type)
|
|
map.add("Result Type", result_type->getName());
|
|
|
|
if (!result_name.empty())
|
|
map.add("Result Name", result_name);
|
|
|
|
if (column)
|
|
map.add("Column", column->getName());
|
|
|
|
if (function_base)
|
|
map.add("Function", function_base->getName());
|
|
|
|
if (type == ActionType::FUNCTION)
|
|
map.add("Compiled", is_function_compiled);
|
|
}
|
|
|
|
|
|
ActionsDAG::ActionsDAG(const NamesAndTypesList & inputs_)
|
|
{
|
|
for (const auto & input : inputs_)
|
|
outputs.push_back(&addInput(input.name, input.type));
|
|
}
|
|
|
|
ActionsDAG::ActionsDAG(const ColumnsWithTypeAndName & inputs_)
|
|
{
|
|
for (const auto & input : inputs_)
|
|
{
|
|
if (input.column && isColumnConst(*input.column))
|
|
{
|
|
addInput(input);
|
|
|
|
/// Here we also add column.
|
|
/// It will allow to remove input which is actually constant (after projection).
|
|
/// Also, some transforms from query pipeline may randomly materialize constants,
|
|
/// without any respect to header structure. So, it is a way to drop materialized column and use
|
|
/// constant value from header.
|
|
/// We cannot remove such input right now cause inputs positions are important in some cases.
|
|
outputs.push_back(&addColumn(input));
|
|
}
|
|
else
|
|
outputs.push_back(&addInput(input.name, input.type));
|
|
}
|
|
}
|
|
|
|
ActionsDAG::Node & ActionsDAG::addNode(Node node)
|
|
{
|
|
auto & res = nodes.emplace_back(std::move(node));
|
|
|
|
if (res.type == ActionType::INPUT)
|
|
inputs.emplace_back(&res);
|
|
|
|
return res;
|
|
}
|
|
|
|
const ActionsDAG::Node & ActionsDAG::addInput(std::string name, DataTypePtr type)
|
|
{
|
|
Node node;
|
|
node.type = ActionType::INPUT;
|
|
node.result_type = std::move(type);
|
|
node.result_name = std::move(name);
|
|
|
|
return addNode(std::move(node));
|
|
}
|
|
|
|
const ActionsDAG::Node & ActionsDAG::addInput(ColumnWithTypeAndName column)
|
|
{
|
|
Node node;
|
|
node.type = ActionType::INPUT;
|
|
node.result_type = std::move(column.type);
|
|
node.result_name = std::move(column.name);
|
|
node.column = std::move(column.column);
|
|
|
|
return addNode(std::move(node));
|
|
}
|
|
|
|
const ActionsDAG::Node & ActionsDAG::addColumn(ColumnWithTypeAndName column)
|
|
{
|
|
if (!column.column)
|
|
throw Exception(ErrorCodes::LOGICAL_ERROR, "Cannot add column {} because it is nullptr", column.name);
|
|
|
|
Node node;
|
|
node.type = ActionType::COLUMN;
|
|
node.result_type = std::move(column.type);
|
|
node.result_name = std::move(column.name);
|
|
node.column = std::move(column.column);
|
|
|
|
return addNode(std::move(node));
|
|
}
|
|
|
|
const ActionsDAG::Node & ActionsDAG::addAlias(const Node & child, std::string alias)
|
|
{
|
|
Node node;
|
|
node.type = ActionType::ALIAS;
|
|
node.result_type = child.result_type;
|
|
node.result_name = std::move(alias);
|
|
node.column = child.column;
|
|
node.children.emplace_back(&child);
|
|
|
|
return addNode(std::move(node));
|
|
}
|
|
|
|
const ActionsDAG::Node & ActionsDAG::addArrayJoin(const Node & child, std::string result_name)
|
|
{
|
|
const auto & array_type = getArrayJoinDataType(child.result_type);
|
|
if (!array_type)
|
|
throw Exception(ErrorCodes::TYPE_MISMATCH, "ARRAY JOIN requires array argument");
|
|
|
|
if (result_name.empty())
|
|
result_name = "arrayJoin(" + child.result_name + ")";
|
|
|
|
Node node;
|
|
node.type = ActionType::ARRAY_JOIN;
|
|
node.result_type = array_type->getNestedType();
|
|
node.result_name = std::move(result_name);
|
|
node.children.emplace_back(&child);
|
|
|
|
return addNode(std::move(node));
|
|
}
|
|
|
|
const ActionsDAG::Node & ActionsDAG::addFunction(
|
|
const FunctionOverloadResolverPtr & function,
|
|
NodeRawConstPtrs children,
|
|
std::string result_name)
|
|
{
|
|
auto [arguments, all_const] = getFunctionArguments(children);
|
|
|
|
auto constant_args = function->getArgumentsThatAreAlwaysConstant();
|
|
for (size_t pos : constant_args)
|
|
{
|
|
if (pos >= children.size())
|
|
continue;
|
|
|
|
if (arguments[pos].column && isColumnConst(*arguments[pos].column))
|
|
continue;
|
|
|
|
if (isConstantFromScalarSubquery(children[pos]))
|
|
arguments[pos].column = arguments[pos].type->createColumnConstWithDefaultValue(0);
|
|
}
|
|
|
|
auto function_base = function->build(arguments);
|
|
return addFunctionImpl(
|
|
function_base,
|
|
std::move(children),
|
|
std::move(arguments),
|
|
std::move(result_name),
|
|
function_base->getResultType(),
|
|
all_const);
|
|
}
|
|
|
|
const ActionsDAG::Node & ActionsDAG::addFunction(
|
|
const FunctionNode & function,
|
|
NodeRawConstPtrs children,
|
|
std::string result_name)
|
|
{
|
|
auto [arguments, all_const] = getFunctionArguments(children);
|
|
|
|
return addFunctionImpl(
|
|
function.getFunction(),
|
|
std::move(children),
|
|
std::move(arguments),
|
|
std::move(result_name),
|
|
function.getResultType(),
|
|
all_const);
|
|
}
|
|
|
|
const ActionsDAG::Node & ActionsDAG::addFunction(
|
|
const FunctionBasePtr & function_base,
|
|
NodeRawConstPtrs children,
|
|
std::string result_name)
|
|
{
|
|
auto [arguments, all_const] = getFunctionArguments(children);
|
|
|
|
return addFunctionImpl(
|
|
function_base,
|
|
std::move(children),
|
|
std::move(arguments),
|
|
std::move(result_name),
|
|
function_base->getResultType(),
|
|
all_const);
|
|
}
|
|
|
|
const ActionsDAG::Node & ActionsDAG::addCast(const Node & node_to_cast, const DataTypePtr & cast_type, std::string result_name)
|
|
{
|
|
Field cast_type_constant_value(cast_type->getName());
|
|
|
|
ColumnWithTypeAndName column;
|
|
column.name = calculateConstantActionNodeName(cast_type_constant_value);
|
|
column.column = DataTypeString().createColumnConst(0, cast_type_constant_value);
|
|
column.type = std::make_shared<DataTypeString>();
|
|
|
|
const auto * cast_type_constant_node = &addColumn(std::move(column));
|
|
ActionsDAG::NodeRawConstPtrs children = {&node_to_cast, cast_type_constant_node};
|
|
FunctionOverloadResolverPtr func_builder_cast = createInternalCastOverloadResolver(CastType::nonAccurate, {});
|
|
|
|
return addFunction(func_builder_cast, std::move(children), result_name);
|
|
}
|
|
|
|
const ActionsDAG::Node & ActionsDAG::addFunctionImpl(
|
|
const FunctionBasePtr & function_base,
|
|
NodeRawConstPtrs children,
|
|
ColumnsWithTypeAndName arguments,
|
|
std::string result_name,
|
|
DataTypePtr result_type,
|
|
bool all_const)
|
|
{
|
|
size_t num_arguments = children.size();
|
|
|
|
Node node;
|
|
node.type = ActionType::FUNCTION;
|
|
node.children = std::move(children);
|
|
|
|
node.function_base = function_base;
|
|
node.result_type = result_type;
|
|
node.function = node.function_base->prepare(arguments);
|
|
node.is_deterministic = node.function_base->isDeterministic();
|
|
|
|
/// If all arguments are constants, and function is suitable to be executed in 'prepare' stage - execute function.
|
|
if (node.function_base->isSuitableForConstantFolding())
|
|
{
|
|
ColumnPtr column;
|
|
|
|
if (all_const)
|
|
{
|
|
size_t num_rows = arguments.empty() ? 0 : arguments.front().column->size();
|
|
column = node.function->execute(arguments, node.result_type, num_rows, true);
|
|
if (column->getDataType() != node.result_type->getColumnType())
|
|
throw Exception(
|
|
ErrorCodes::LOGICAL_ERROR,
|
|
"Unexpected return type from {}. Expected {}. Got {}",
|
|
node.function->getName(),
|
|
node.result_type->getColumnType(),
|
|
column->getDataType());
|
|
}
|
|
else
|
|
{
|
|
column = node.function_base->getConstantResultForNonConstArguments(arguments, node.result_type);
|
|
}
|
|
|
|
/// If the result is not a constant, just in case, we will consider the result as unknown.
|
|
if (column && isColumnConst(*column))
|
|
{
|
|
/// All constant (literal) columns in block are added with size 1.
|
|
/// But if there was no columns in block before executing a function, the result has size 0.
|
|
/// Change the size to 1.
|
|
|
|
if (column->empty())
|
|
column = column->cloneResized(1);
|
|
|
|
node.column = std::move(column);
|
|
}
|
|
}
|
|
|
|
if (result_name.empty())
|
|
{
|
|
result_name = function_base->getName() + "(";
|
|
for (size_t i = 0; i < num_arguments; ++i)
|
|
{
|
|
if (i)
|
|
result_name += ", ";
|
|
result_name += node.children[i]->result_name;
|
|
}
|
|
result_name += ")";
|
|
}
|
|
|
|
node.result_name = std::move(result_name);
|
|
|
|
return addNode(std::move(node));
|
|
}
|
|
|
|
const ActionsDAG::Node & ActionsDAG::findInOutputs(const std::string & name) const
|
|
{
|
|
if (const auto * node = tryFindInOutputs(name))
|
|
return *node;
|
|
|
|
throw Exception(ErrorCodes::UNKNOWN_IDENTIFIER, "Unknown identifier: '{}'", name);
|
|
}
|
|
|
|
const ActionsDAG::Node * ActionsDAG::tryFindInOutputs(const std::string & name) const
|
|
{
|
|
for (const auto & node : outputs)
|
|
if (node->result_name == name)
|
|
return node;
|
|
|
|
return nullptr;
|
|
}
|
|
|
|
ActionsDAG::NodeRawConstPtrs ActionsDAG::findInOutpus(const Names & names) const
|
|
{
|
|
NodeRawConstPtrs required_nodes;
|
|
required_nodes.reserve(names.size());
|
|
|
|
std::unordered_map<std::string_view, const Node *> names_map;
|
|
for (const auto * node : outputs)
|
|
names_map[node->result_name] = node;
|
|
|
|
for (const auto & name : names)
|
|
{
|
|
auto it = names_map.find(name);
|
|
if (it == names_map.end())
|
|
throw Exception(ErrorCodes::UNKNOWN_IDENTIFIER,
|
|
"Unknown column: {}, there are only columns {}", name, dumpDAG());
|
|
|
|
required_nodes.push_back(it->second);
|
|
}
|
|
|
|
return required_nodes;
|
|
}
|
|
|
|
void ActionsDAG::addOrReplaceInOutputs(const Node & node)
|
|
{
|
|
for (auto & output_node : outputs)
|
|
{
|
|
if (output_node->result_name == node.result_name)
|
|
{
|
|
output_node = &node;
|
|
return;
|
|
}
|
|
}
|
|
|
|
outputs.push_back(&node);
|
|
}
|
|
|
|
NamesAndTypesList ActionsDAG::getRequiredColumns() const
|
|
{
|
|
NamesAndTypesList result;
|
|
for (const auto & input_node : inputs)
|
|
result.emplace_back(input_node->result_name, input_node->result_type);
|
|
|
|
return result;
|
|
}
|
|
|
|
Names ActionsDAG::getRequiredColumnsNames() const
|
|
{
|
|
Names result;
|
|
result.reserve(inputs.size());
|
|
|
|
for (const auto & input_node : inputs)
|
|
result.emplace_back(input_node->result_name);
|
|
|
|
return result;
|
|
}
|
|
|
|
ColumnsWithTypeAndName ActionsDAG::getResultColumns() const
|
|
{
|
|
ColumnsWithTypeAndName result;
|
|
result.reserve(outputs.size());
|
|
|
|
for (const auto & node : outputs)
|
|
result.emplace_back(node->column, node->result_type, node->result_name);
|
|
|
|
return result;
|
|
}
|
|
|
|
NamesAndTypesList ActionsDAG::getNamesAndTypesList() const
|
|
{
|
|
NamesAndTypesList result;
|
|
for (const auto & node : outputs)
|
|
result.emplace_back(node->result_name, node->result_type);
|
|
|
|
return result;
|
|
}
|
|
|
|
Names ActionsDAG::getNames() const
|
|
{
|
|
Names names;
|
|
names.reserve(outputs.size());
|
|
|
|
for (const auto & node : outputs)
|
|
names.emplace_back(node->result_name);
|
|
|
|
return names;
|
|
}
|
|
|
|
std::string ActionsDAG::dumpNames() const
|
|
{
|
|
WriteBufferFromOwnString out;
|
|
for (auto it = nodes.begin(); it != nodes.end(); ++it)
|
|
{
|
|
if (it != nodes.begin())
|
|
out << ", ";
|
|
out << it->result_name;
|
|
}
|
|
return out.str();
|
|
}
|
|
|
|
void ActionsDAG::removeUnusedActions(const NameSet & required_names, bool allow_remove_inputs, bool allow_constant_folding)
|
|
{
|
|
NodeRawConstPtrs required_nodes;
|
|
required_nodes.reserve(required_names.size());
|
|
|
|
NameSet added;
|
|
for (const auto & node : outputs)
|
|
{
|
|
if (required_names.contains(node->result_name) && !added.contains(node->result_name))
|
|
{
|
|
required_nodes.push_back(node);
|
|
added.insert(node->result_name);
|
|
}
|
|
}
|
|
|
|
if (added.size() < required_names.size())
|
|
{
|
|
for (const auto & name : required_names)
|
|
if (!added.contains(name))
|
|
throw Exception(ErrorCodes::UNKNOWN_IDENTIFIER,
|
|
"Unknown column: {}, there are only columns {}", name, dumpNames());
|
|
}
|
|
|
|
outputs.swap(required_nodes);
|
|
removeUnusedActions(allow_remove_inputs, allow_constant_folding);
|
|
}
|
|
|
|
void ActionsDAG::removeUnusedActions(const Names & required_names, bool allow_remove_inputs, bool allow_constant_folding)
|
|
{
|
|
auto required_nodes = findInOutpus(required_names);
|
|
outputs.swap(required_nodes);
|
|
removeUnusedActions(allow_remove_inputs, allow_constant_folding);
|
|
}
|
|
|
|
void ActionsDAG::removeUnusedActions(bool allow_remove_inputs, bool allow_constant_folding)
|
|
{
|
|
std::unordered_set<const Node *> used_inputs;
|
|
if (!allow_remove_inputs)
|
|
{
|
|
for (const auto * input : inputs)
|
|
used_inputs.insert(input);
|
|
}
|
|
removeUnusedActions(used_inputs, allow_constant_folding);
|
|
}
|
|
|
|
void ActionsDAG::removeUnusedActions(const std::unordered_set<const Node *> & used_inputs, bool allow_constant_folding)
|
|
{
|
|
std::unordered_set<const Node *> visited_nodes;
|
|
std::stack<Node *> stack;
|
|
|
|
for (const auto * node : outputs)
|
|
{
|
|
visited_nodes.insert(node);
|
|
stack.push(const_cast<Node *>(node));
|
|
}
|
|
|
|
for (auto & node : nodes)
|
|
{
|
|
/// We cannot remove arrayJoin because it changes the number of rows.
|
|
bool is_array_join = node.type == ActionType::ARRAY_JOIN;
|
|
|
|
if (is_array_join && !visited_nodes.contains(&node))
|
|
{
|
|
visited_nodes.insert(&node);
|
|
stack.push(&node);
|
|
}
|
|
|
|
if (node.type == ActionType::INPUT && used_inputs.contains(&node))
|
|
visited_nodes.insert(&node);
|
|
}
|
|
|
|
while (!stack.empty())
|
|
{
|
|
auto * node = stack.top();
|
|
stack.pop();
|
|
|
|
/// Constant folding.
|
|
if (allow_constant_folding && !node->children.empty() && node->column && isColumnConst(*node->column))
|
|
{
|
|
node->type = ActionsDAG::ActionType::COLUMN;
|
|
|
|
for (const auto & child : node->children)
|
|
{
|
|
if (!child->is_deterministic)
|
|
{
|
|
node->is_deterministic = false;
|
|
break;
|
|
}
|
|
}
|
|
|
|
node->children.clear();
|
|
}
|
|
|
|
for (const auto * child : node->children)
|
|
{
|
|
if (!visited_nodes.contains(child))
|
|
{
|
|
stack.push(const_cast<Node *>(child));
|
|
visited_nodes.insert(child);
|
|
}
|
|
}
|
|
}
|
|
|
|
nodes.remove_if([&](const Node & node) { return !visited_nodes.contains(&node); });
|
|
std::erase_if(inputs, [&](const Node * node) { return !visited_nodes.contains(node); });
|
|
}
|
|
|
|
ActionsDAGPtr ActionsDAG::cloneSubDAG(const NodeRawConstPtrs & outputs, bool remove_aliases)
|
|
{
|
|
auto actions = std::make_shared<ActionsDAG>();
|
|
std::unordered_map<const Node *, Node *> copy_map;
|
|
|
|
struct Frame
|
|
{
|
|
const Node * node = nullptr;
|
|
size_t next_child = 0;
|
|
};
|
|
|
|
std::stack<Frame> stack;
|
|
|
|
for (const auto * output : outputs)
|
|
{
|
|
if (copy_map.contains(output))
|
|
continue;
|
|
|
|
stack.push(Frame{output});
|
|
while (!stack.empty())
|
|
{
|
|
auto & frame = stack.top();
|
|
const auto & children = frame.node->children;
|
|
while (frame.next_child < children.size() && copy_map.contains(children[frame.next_child]))
|
|
++frame.next_child;
|
|
|
|
if (frame.next_child < children.size())
|
|
{
|
|
stack.push(Frame{children[frame.next_child]});
|
|
continue;
|
|
}
|
|
|
|
auto & copy_node = copy_map[frame.node];
|
|
|
|
if (remove_aliases && frame.node->type == ActionType::ALIAS)
|
|
copy_node = copy_map[frame.node->children.front()];
|
|
else
|
|
copy_node = &actions->nodes.emplace_back(*frame.node);
|
|
|
|
if (frame.node->type == ActionType::INPUT)
|
|
actions->inputs.push_back(copy_node);
|
|
|
|
stack.pop();
|
|
}
|
|
}
|
|
|
|
for (auto & node : actions->nodes)
|
|
for (auto & child : node.children)
|
|
child = copy_map[child];
|
|
|
|
for (const auto * output : outputs)
|
|
actions->outputs.push_back(copy_map[output]);
|
|
|
|
return actions;
|
|
}
|
|
|
|
static ColumnWithTypeAndName executeActionForPartialResult(const ActionsDAG::Node * node, ColumnsWithTypeAndName arguments, size_t input_rows_count)
|
|
{
|
|
ColumnWithTypeAndName res_column;
|
|
res_column.type = node->result_type;
|
|
res_column.name = node->result_name;
|
|
|
|
switch (node->type)
|
|
{
|
|
case ActionsDAG::ActionType::FUNCTION:
|
|
{
|
|
res_column.column = node->function->execute(arguments, res_column.type, input_rows_count, true);
|
|
break;
|
|
}
|
|
|
|
case ActionsDAG::ActionType::ARRAY_JOIN:
|
|
{
|
|
auto key = arguments.at(0);
|
|
key.column = key.column->convertToFullColumnIfConst();
|
|
|
|
const auto * array = getArrayJoinColumnRawPtr(key.column);
|
|
if (!array)
|
|
throw Exception(ErrorCodes::TYPE_MISMATCH,
|
|
"ARRAY JOIN of not array nor map: {}", node->result_name);
|
|
|
|
ColumnPtr data;
|
|
if (input_rows_count < array->size())
|
|
data = array->getDataInRange(0, input_rows_count);
|
|
else
|
|
data = array->getDataPtr();
|
|
|
|
res_column.column = data;
|
|
break;
|
|
}
|
|
|
|
case ActionsDAG::ActionType::COLUMN:
|
|
{
|
|
auto column = node->column;
|
|
if (input_rows_count < column->size())
|
|
column = column->cloneResized(input_rows_count);
|
|
|
|
res_column.column = column;
|
|
break;
|
|
}
|
|
|
|
case ActionsDAG::ActionType::ALIAS:
|
|
{
|
|
res_column.column = arguments.at(0).column;
|
|
break;
|
|
}
|
|
|
|
case ActionsDAG::ActionType::INPUT:
|
|
{
|
|
break;
|
|
}
|
|
}
|
|
|
|
return res_column;
|
|
}
|
|
|
|
Block ActionsDAG::updateHeader(Block header) const
|
|
{
|
|
IntermediateExecutionResult node_to_column;
|
|
std::set<size_t> pos_to_remove;
|
|
|
|
{
|
|
std::unordered_map<std::string_view, std::list<size_t>> input_positions;
|
|
|
|
for (size_t pos = 0; pos < inputs.size(); ++pos)
|
|
input_positions[inputs[pos]->result_name].emplace_back(pos);
|
|
|
|
for (size_t pos = 0; pos < header.columns(); ++pos)
|
|
{
|
|
const auto & col = header.getByPosition(pos);
|
|
auto it = input_positions.find(col.name);
|
|
if (it != input_positions.end() && !it->second.empty())
|
|
{
|
|
auto & list = it->second;
|
|
pos_to_remove.insert(pos);
|
|
node_to_column[inputs[list.front()]] = col;
|
|
list.pop_front();
|
|
}
|
|
}
|
|
}
|
|
|
|
ColumnsWithTypeAndName result_columns;
|
|
try
|
|
{
|
|
result_columns = evaluatePartialResult(node_to_column, outputs, /* input_rows_count= */ 0, /* throw_on_error= */ true);
|
|
}
|
|
catch (Exception & e)
|
|
{
|
|
if (e.code() == ErrorCodes::NOT_FOUND_COLUMN_IN_BLOCK)
|
|
e.addMessage("in block {}", header.dumpStructure());
|
|
|
|
throw;
|
|
}
|
|
|
|
if (isInputProjected())
|
|
header.clear();
|
|
else
|
|
header.erase(pos_to_remove);
|
|
|
|
Block res;
|
|
|
|
for (auto & col : result_columns)
|
|
res.insert(std::move(col));
|
|
|
|
for (auto && item : header)
|
|
res.insert(std::move(item));
|
|
|
|
return res;
|
|
}
|
|
|
|
ColumnsWithTypeAndName ActionsDAG::evaluatePartialResult(
|
|
IntermediateExecutionResult & node_to_column,
|
|
const NodeRawConstPtrs & outputs,
|
|
size_t input_rows_count,
|
|
bool throw_on_error)
|
|
{
|
|
chassert(input_rows_count <= 1); /// evaluatePartialResult() should be used only to evaluate headers or constants
|
|
|
|
ColumnsWithTypeAndName result_columns;
|
|
result_columns.reserve(outputs.size());
|
|
|
|
struct Frame
|
|
{
|
|
const Node * node = nullptr;
|
|
size_t next_child = 0;
|
|
};
|
|
|
|
{
|
|
for (const auto * output_node : outputs)
|
|
{
|
|
if (!node_to_column.contains(output_node))
|
|
{
|
|
std::stack<Frame> stack;
|
|
stack.push({.node = output_node});
|
|
|
|
while (!stack.empty())
|
|
{
|
|
auto & frame = stack.top();
|
|
const auto * node = frame.node;
|
|
|
|
while (frame.next_child < node->children.size())
|
|
{
|
|
const auto * child = node->children[frame.next_child];
|
|
++frame.next_child;
|
|
if (!node_to_column.contains(child))
|
|
{
|
|
stack.push({.node = child});
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (stack.top().node != node)
|
|
continue;
|
|
|
|
stack.pop();
|
|
|
|
ColumnsWithTypeAndName arguments(node->children.size());
|
|
bool has_all_arguments = true;
|
|
for (size_t i = 0; i < arguments.size(); ++i)
|
|
{
|
|
arguments[i] = node_to_column[node->children[i]];
|
|
if (!arguments[i].column)
|
|
has_all_arguments = false;
|
|
if (!has_all_arguments && throw_on_error)
|
|
throw Exception(ErrorCodes::NOT_FOUND_COLUMN_IN_BLOCK,
|
|
"Not found column {}", node->children[i]->result_name);
|
|
}
|
|
|
|
if (node->type == ActionsDAG::ActionType::INPUT && throw_on_error)
|
|
throw Exception(ErrorCodes::NOT_FOUND_COLUMN_IN_BLOCK,
|
|
"Not found column {}",
|
|
node->result_name);
|
|
|
|
if (node->type != ActionsDAG::ActionType::INPUT && has_all_arguments)
|
|
node_to_column[node] = executeActionForPartialResult(node, std::move(arguments), input_rows_count);
|
|
}
|
|
}
|
|
|
|
auto it = node_to_column.find(output_node);
|
|
if (it != node_to_column.end())
|
|
result_columns.push_back(node_to_column[output_node]);
|
|
else
|
|
result_columns.emplace_back(nullptr, output_node->result_type, output_node->result_name);
|
|
}
|
|
}
|
|
|
|
return result_columns;
|
|
}
|
|
|
|
NameSet ActionsDAG::foldActionsByProjection(
|
|
const NameSet & required_columns, const Block & projection_block_for_keys, const String & predicate_column_name, bool add_missing_keys)
|
|
{
|
|
std::unordered_set<const Node *> visited_nodes;
|
|
std::unordered_set<std::string_view> visited_output_nodes_names;
|
|
std::stack<Node *> stack;
|
|
|
|
/// Record all needed output nodes to start folding.
|
|
for (const auto & output_node : outputs)
|
|
{
|
|
if (required_columns.find(output_node->result_name) != required_columns.end() || output_node->result_name == predicate_column_name)
|
|
{
|
|
visited_nodes.insert(output_node);
|
|
visited_output_nodes_names.insert(output_node->result_name);
|
|
stack.push(const_cast<Node *>(output_node));
|
|
}
|
|
}
|
|
|
|
/// If some required columns are not in any output node, try searching from all projection key
|
|
/// columns. If still missing, return empty set which means current projection fails to match
|
|
/// (missing columns).
|
|
if (add_missing_keys)
|
|
{
|
|
for (const auto & column : required_columns)
|
|
{
|
|
if (visited_output_nodes_names.find(column) == visited_output_nodes_names.end())
|
|
{
|
|
if (const ColumnWithTypeAndName * column_with_type_name = projection_block_for_keys.findByName(column))
|
|
{
|
|
const auto * node = &addInput(*column_with_type_name);
|
|
visited_nodes.insert(node);
|
|
outputs.push_back(node);
|
|
visited_output_nodes_names.insert(column);
|
|
}
|
|
else
|
|
{
|
|
// Missing column
|
|
return {};
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/// Traverse the DAG from root to leaf. Substitute any matched node with columns in projection_block_for_keys.
|
|
while (!stack.empty())
|
|
{
|
|
auto * node = stack.top();
|
|
stack.pop();
|
|
|
|
if (const ColumnWithTypeAndName * column_with_type_name = projection_block_for_keys.findByName(node->result_name))
|
|
{
|
|
if (node->type != ActionsDAG::ActionType::INPUT)
|
|
{
|
|
/// Projection folding.
|
|
node->type = ActionsDAG::ActionType::INPUT;
|
|
node->result_type = column_with_type_name->type;
|
|
node->result_name = column_with_type_name->name;
|
|
node->children.clear();
|
|
inputs.push_back(node);
|
|
}
|
|
}
|
|
|
|
for (const auto * child : node->children)
|
|
{
|
|
if (!visited_nodes.contains(child))
|
|
{
|
|
stack.push(const_cast<Node *>(child));
|
|
visited_nodes.insert(child);
|
|
}
|
|
}
|
|
}
|
|
|
|
/// Clean up unused nodes after folding.
|
|
std::erase_if(inputs, [&](const Node * node) { return !visited_nodes.contains(node); });
|
|
std::erase_if(outputs, [&](const Node * node) { return !visited_output_nodes_names.contains(node->result_name); });
|
|
nodes.remove_if([&](const Node & node) { return !visited_nodes.contains(&node); });
|
|
|
|
/// Calculate the required columns after folding.
|
|
NameSet next_required_columns;
|
|
for (const auto & input_node : inputs)
|
|
next_required_columns.insert(input_node->result_name);
|
|
|
|
return next_required_columns;
|
|
}
|
|
|
|
|
|
ActionsDAGPtr ActionsDAG::foldActionsByProjection(const std::unordered_map<const Node *, const Node *> & new_inputs, const NodeRawConstPtrs & required_outputs)
|
|
{
|
|
auto dag = std::make_unique<ActionsDAG>();
|
|
std::unordered_map<const Node *, const Node *> inputs_mapping;
|
|
std::unordered_map<const Node *, const Node *> mapping;
|
|
struct Frame
|
|
{
|
|
const Node * node;
|
|
size_t next_child = 0;
|
|
};
|
|
|
|
std::vector<Frame> stack;
|
|
for (const auto * output : required_outputs)
|
|
{
|
|
if (mapping.contains(output))
|
|
continue;
|
|
|
|
stack.push_back({.node = output});
|
|
while (!stack.empty())
|
|
{
|
|
auto & frame = stack.back();
|
|
|
|
if (frame.next_child == 0)
|
|
{
|
|
auto it = new_inputs.find(frame.node);
|
|
if (it != new_inputs.end())
|
|
{
|
|
const auto & [new_input, rename] = *it;
|
|
|
|
auto & node = mapping[frame.node];
|
|
|
|
if (!node)
|
|
{
|
|
/// It is possible to have a few aliases on the same column.
|
|
/// We may want to replace all the aliases,
|
|
/// in this case they should have a single input as a child.
|
|
auto & mapped_input = inputs_mapping[rename];
|
|
|
|
if (!mapped_input)
|
|
{
|
|
bool should_rename = new_input->result_name != rename->result_name;
|
|
const auto & input_name = should_rename ? rename->result_name : new_input->result_name;
|
|
mapped_input = &dag->addInput(input_name, new_input->result_type);
|
|
if (should_rename)
|
|
mapped_input = &dag->addAlias(*mapped_input, new_input->result_name);
|
|
}
|
|
|
|
node = mapped_input;
|
|
}
|
|
|
|
stack.pop_back();
|
|
continue;
|
|
}
|
|
}
|
|
|
|
const auto & children = frame.node->children;
|
|
|
|
while (frame.next_child < children.size() && !mapping.emplace(children[frame.next_child], nullptr).second)
|
|
++frame.next_child;
|
|
|
|
if (frame.next_child < children.size())
|
|
{
|
|
const auto * child = children[frame.next_child];
|
|
++frame.next_child;
|
|
stack.push_back({.node = child});
|
|
continue;
|
|
}
|
|
|
|
if (frame.node->type == ActionType::INPUT)
|
|
throw Exception(ErrorCodes::LOGICAL_ERROR,
|
|
"Cannot fold actions for projection. Node {} requires input {} which does not belong to projection",
|
|
stack.front().node->result_name, frame.node->result_name);
|
|
|
|
auto & node = dag->nodes.emplace_back(*frame.node);
|
|
for (auto & child : node.children)
|
|
child = mapping[child];
|
|
|
|
mapping[frame.node] = &node;
|
|
stack.pop_back();
|
|
}
|
|
}
|
|
|
|
for (const auto * output : required_outputs)
|
|
{
|
|
/// Keep the names for outputs.
|
|
/// Add an alias if the mapped node has a different result name.
|
|
const auto * mapped_output = mapping[output];
|
|
if (output->result_name != mapped_output->result_name)
|
|
mapped_output = &dag->addAlias(*mapped_output, output->result_name);
|
|
dag->outputs.push_back(mapped_output);
|
|
}
|
|
|
|
return dag;
|
|
}
|
|
|
|
void ActionsDAG::addAliases(const NamesWithAliases & aliases)
|
|
{
|
|
std::unordered_map<std::string_view, size_t> names_map;
|
|
size_t output_nodes_size = outputs.size();
|
|
|
|
for (size_t i = 0; i < output_nodes_size; ++i)
|
|
names_map[outputs[i]->result_name] = i;
|
|
|
|
size_t aliases_size = aliases.size();
|
|
|
|
NodeRawConstPtrs required_nodes;
|
|
required_nodes.reserve(aliases_size);
|
|
|
|
for (const auto & item : aliases)
|
|
{
|
|
auto it = names_map.find(item.first);
|
|
if (it == names_map.end())
|
|
throw Exception(ErrorCodes::UNKNOWN_IDENTIFIER,
|
|
"Unknown column: {}, there are only columns {}", item.first, dumpNames());
|
|
|
|
required_nodes.push_back(outputs[it->second]);
|
|
}
|
|
|
|
for (size_t i = 0; i < aliases_size; ++i)
|
|
{
|
|
const auto & item = aliases[i];
|
|
const auto * child = required_nodes[i];
|
|
|
|
if (!item.second.empty() && item.first != item.second)
|
|
{
|
|
Node node;
|
|
node.type = ActionType::ALIAS;
|
|
node.result_type = child->result_type;
|
|
node.result_name = item.second;
|
|
node.column = child->column;
|
|
node.children.emplace_back(child);
|
|
|
|
child = &addNode(std::move(node));
|
|
}
|
|
|
|
auto it = names_map.find(child->result_name);
|
|
if (it == names_map.end())
|
|
{
|
|
names_map[child->result_name] = outputs.size();
|
|
outputs.push_back(child);
|
|
}
|
|
else
|
|
outputs[it->second] = child;
|
|
}
|
|
}
|
|
|
|
void ActionsDAG::project(const NamesWithAliases & projection)
|
|
{
|
|
std::unordered_map<std::string_view, const Node *> names_map;
|
|
for (const auto * output_node : outputs)
|
|
names_map.emplace(output_node->result_name, output_node);
|
|
|
|
outputs.clear();
|
|
|
|
size_t projection_size = projection.size();
|
|
outputs.reserve(projection_size);
|
|
|
|
for (const auto & item : projection)
|
|
{
|
|
auto it = names_map.find(item.first);
|
|
if (it == names_map.end())
|
|
throw Exception(ErrorCodes::UNKNOWN_IDENTIFIER,
|
|
"Unknown column: {}, there are only columns {}", item.first, dumpNames());
|
|
|
|
outputs.push_back(it->second);
|
|
}
|
|
|
|
for (size_t i = 0; i < projection_size; ++i)
|
|
{
|
|
const auto & item = projection[i];
|
|
auto & child = outputs[i];
|
|
|
|
if (!item.second.empty() && item.first != item.second)
|
|
{
|
|
Node node;
|
|
node.type = ActionType::ALIAS;
|
|
node.result_type = child->result_type;
|
|
node.result_name = item.second;
|
|
node.column = child->column;
|
|
node.children.emplace_back(child);
|
|
|
|
child = &addNode(std::move(node));
|
|
}
|
|
}
|
|
|
|
removeUnusedActions();
|
|
projectInput();
|
|
projected_output = true;
|
|
}
|
|
|
|
bool ActionsDAG::tryRestoreColumn(const std::string & column_name)
|
|
{
|
|
for (const auto * output_node : outputs)
|
|
if (output_node->result_name == column_name)
|
|
return true;
|
|
|
|
for (auto it = nodes.rbegin(); it != nodes.rend(); ++it)
|
|
{
|
|
auto & node = *it;
|
|
if (node.result_name == column_name)
|
|
{
|
|
outputs.push_back(&node);
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
bool ActionsDAG::removeUnusedResult(const std::string & column_name)
|
|
{
|
|
/// Find column in output nodes and remove.
|
|
const Node * col;
|
|
{
|
|
auto it = outputs.begin();
|
|
for (; it != outputs.end(); ++it)
|
|
if ((*it)->result_name == column_name)
|
|
break;
|
|
|
|
if (it == outputs.end())
|
|
throw Exception(ErrorCodes::LOGICAL_ERROR, "Not found result {} in ActionsDAG\n{}", column_name, dumpDAG());
|
|
|
|
col = *it;
|
|
outputs.erase(it);
|
|
}
|
|
|
|
/// Check if column is in input.
|
|
auto it = inputs.begin();
|
|
for (; it != inputs.end(); ++it)
|
|
if (*it == col)
|
|
break;
|
|
|
|
if (it == inputs.end())
|
|
return false;
|
|
|
|
/// Check column has no dependent.
|
|
for (const auto & node : nodes)
|
|
for (const auto * child : node.children)
|
|
if (col == child)
|
|
return false;
|
|
|
|
/// Do not remove input if it was mentioned in output nodes several times.
|
|
for (const auto * output_node : outputs)
|
|
if (col == output_node)
|
|
return false;
|
|
|
|
/// Remove from nodes and inputs.
|
|
for (auto jt = nodes.begin(); jt != nodes.end(); ++jt)
|
|
{
|
|
if (&(*jt) == *it)
|
|
{
|
|
nodes.erase(jt);
|
|
break;
|
|
}
|
|
}
|
|
|
|
inputs.erase(it);
|
|
return true;
|
|
}
|
|
|
|
ActionsDAGPtr ActionsDAG::clone() const
|
|
{
|
|
auto actions = std::make_shared<ActionsDAG>();
|
|
actions->project_input = project_input;
|
|
actions->projected_output = projected_output;
|
|
|
|
std::unordered_map<const Node *, Node *> copy_map;
|
|
|
|
for (const auto & node : nodes)
|
|
{
|
|
auto & copy_node = actions->nodes.emplace_back(node);
|
|
copy_map[&node] = ©_node;
|
|
}
|
|
|
|
for (auto & node : actions->nodes)
|
|
for (auto & child : node.children)
|
|
child = copy_map[child];
|
|
|
|
for (const auto & output_node : outputs)
|
|
actions->outputs.push_back(copy_map[output_node]);
|
|
|
|
for (const auto & input_node : inputs)
|
|
actions->inputs.push_back(copy_map[input_node]);
|
|
|
|
return actions;
|
|
}
|
|
|
|
#if USE_EMBEDDED_COMPILER
|
|
void ActionsDAG::compileExpressions(size_t min_count_to_compile_expression, const std::unordered_set<const ActionsDAG::Node *> & lazy_executed_nodes)
|
|
{
|
|
compileFunctions(min_count_to_compile_expression, lazy_executed_nodes);
|
|
removeUnusedActions(/*allow_remove_inputs = */ false);
|
|
}
|
|
#endif
|
|
|
|
std::string ActionsDAG::dumpDAG() const
|
|
{
|
|
std::unordered_map<const Node *, size_t> map;
|
|
for (const auto & node : nodes)
|
|
{
|
|
size_t idx = map.size();
|
|
map[&node] = idx;
|
|
}
|
|
|
|
WriteBufferFromOwnString out;
|
|
for (const auto & node : nodes)
|
|
{
|
|
out << map[&node] << " : ";
|
|
switch (node.type)
|
|
{
|
|
case ActionsDAG::ActionType::COLUMN:
|
|
out << "COLUMN ";
|
|
break;
|
|
|
|
case ActionsDAG::ActionType::ALIAS:
|
|
out << "ALIAS ";
|
|
break;
|
|
|
|
case ActionsDAG::ActionType::FUNCTION:
|
|
out << "FUNCTION ";
|
|
break;
|
|
|
|
case ActionsDAG::ActionType::ARRAY_JOIN:
|
|
out << "ARRAY JOIN ";
|
|
break;
|
|
|
|
case ActionsDAG::ActionType::INPUT:
|
|
out << "INPUT ";
|
|
break;
|
|
}
|
|
|
|
out << "(";
|
|
for (size_t i = 0; i < node.children.size(); ++i)
|
|
{
|
|
if (i)
|
|
out << ", ";
|
|
out << map[node.children[i]];
|
|
}
|
|
out << ")";
|
|
|
|
out << " " << (node.column ? node.column->getName() : "(no column)");
|
|
out << " " << (node.result_type ? node.result_type->getName() : "(no type)");
|
|
out << " " << (!node.result_name.empty() ? node.result_name : "(no name)");
|
|
|
|
if (node.function_base)
|
|
out << " [" << node.function_base->getName() << "]";
|
|
|
|
if (node.is_function_compiled)
|
|
out << " [compiled]";
|
|
|
|
out << "\n";
|
|
}
|
|
|
|
out << "Output nodes:";
|
|
for (const auto * node : outputs)
|
|
out << ' ' << map[node];
|
|
out << '\n';
|
|
|
|
out << "Project input: " << project_input << '\n';
|
|
out << "Projected output: " << projected_output << '\n';
|
|
|
|
return out.str();
|
|
}
|
|
|
|
bool ActionsDAG::hasArrayJoin() const
|
|
{
|
|
for (const auto & node : nodes)
|
|
if (node.type == ActionType::ARRAY_JOIN)
|
|
return true;
|
|
|
|
return false;
|
|
}
|
|
|
|
bool ActionsDAG::hasStatefulFunctions() const
|
|
{
|
|
for (const auto & node : nodes)
|
|
if (node.type == ActionType::FUNCTION && node.function_base->isStateful())
|
|
return true;
|
|
|
|
return false;
|
|
}
|
|
|
|
bool ActionsDAG::trivial() const
|
|
{
|
|
for (const auto & node : nodes)
|
|
if (node.type == ActionType::FUNCTION || node.type == ActionType::ARRAY_JOIN)
|
|
return false;
|
|
|
|
return true;
|
|
}
|
|
|
|
void ActionsDAG::assertDeterministic() const
|
|
{
|
|
for (const auto & node : nodes)
|
|
if (!node.is_deterministic)
|
|
throw Exception(ErrorCodes::BAD_ARGUMENTS,
|
|
"Expression must be deterministic but it contains non-deterministic part `{}`", node.result_name);
|
|
}
|
|
|
|
bool ActionsDAG::hasNonDeterministic() const
|
|
{
|
|
for (const auto & node : nodes)
|
|
if (!node.is_deterministic)
|
|
return true;
|
|
return false;
|
|
}
|
|
|
|
void ActionsDAG::addMaterializingOutputActions()
|
|
{
|
|
for (auto & output_node : outputs)
|
|
output_node = &materializeNode(*output_node);
|
|
}
|
|
|
|
const ActionsDAG::Node & ActionsDAG::materializeNode(const Node & node)
|
|
{
|
|
FunctionOverloadResolverPtr func_builder_materialize
|
|
= std::make_unique<FunctionToOverloadResolverAdaptor>(std::make_shared<FunctionMaterialize>());
|
|
|
|
const auto & name = node.result_name;
|
|
const auto * func = &addFunction(func_builder_materialize, {&node}, {});
|
|
return addAlias(*func, name);
|
|
}
|
|
|
|
ActionsDAGPtr ActionsDAG::makeConvertingActions(
|
|
const ColumnsWithTypeAndName & source,
|
|
const ColumnsWithTypeAndName & result,
|
|
MatchColumnsMode mode,
|
|
bool ignore_constant_values,
|
|
bool add_casted_columns,
|
|
NameToNameMap * new_names)
|
|
{
|
|
size_t num_input_columns = source.size();
|
|
size_t num_result_columns = result.size();
|
|
|
|
if (mode == MatchColumnsMode::Position && num_input_columns != num_result_columns)
|
|
throw Exception(ErrorCodes::NUMBER_OF_COLUMNS_DOESNT_MATCH, "Number of columns doesn't match (source: {} and result: {})", num_input_columns, num_result_columns);
|
|
|
|
if (add_casted_columns && mode != MatchColumnsMode::Name)
|
|
throw Exception(ErrorCodes::LOGICAL_ERROR, "Converting with add_casted_columns supported only for MatchColumnsMode::Name");
|
|
|
|
auto actions_dag = std::make_shared<ActionsDAG>(source);
|
|
NodeRawConstPtrs projection(num_result_columns);
|
|
|
|
FunctionOverloadResolverPtr func_builder_materialize = std::make_unique<FunctionToOverloadResolverAdaptor>(std::make_shared<FunctionMaterialize>());
|
|
|
|
std::map<std::string_view, std::list<size_t>> inputs;
|
|
if (mode == MatchColumnsMode::Name)
|
|
{
|
|
size_t input_nodes_size = actions_dag->inputs.size();
|
|
for (size_t pos = 0; pos < input_nodes_size; ++pos)
|
|
inputs[actions_dag->inputs[pos]->result_name].push_back(pos);
|
|
}
|
|
|
|
for (size_t result_col_num = 0; result_col_num < num_result_columns; ++result_col_num)
|
|
{
|
|
const auto & res_elem = result[result_col_num];
|
|
const Node * src_node = nullptr;
|
|
const Node * dst_node = nullptr;
|
|
|
|
switch (mode)
|
|
{
|
|
case MatchColumnsMode::Position:
|
|
{
|
|
src_node = dst_node = actions_dag->inputs[result_col_num];
|
|
break;
|
|
}
|
|
|
|
case MatchColumnsMode::Name:
|
|
{
|
|
auto & input = inputs[res_elem.name];
|
|
if (input.empty())
|
|
{
|
|
const auto * res_const = typeid_cast<const ColumnConst *>(res_elem.column.get());
|
|
if (ignore_constant_values && res_const)
|
|
src_node = dst_node = &actions_dag->addColumn(res_elem);
|
|
else
|
|
throw Exception(ErrorCodes::THERE_IS_NO_COLUMN,
|
|
"Cannot find column `{}` in source stream, there are only columns: [{}]",
|
|
res_elem.name, Block(source).dumpNames());
|
|
}
|
|
else
|
|
{
|
|
src_node = dst_node = actions_dag->inputs[input.front()];
|
|
input.pop_front();
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
|
|
/// Check constants.
|
|
if (const auto * res_const = typeid_cast<const ColumnConst *>(res_elem.column.get()))
|
|
{
|
|
if (const auto * src_const = typeid_cast<const ColumnConst *>(dst_node->column.get()))
|
|
{
|
|
if (ignore_constant_values)
|
|
dst_node = &actions_dag->addColumn(res_elem);
|
|
else if (res_const->getField() != src_const->getField())
|
|
throw Exception(
|
|
ErrorCodes::ILLEGAL_COLUMN,
|
|
"Cannot convert column `{}` because it is constant but values of constants are different in source and result",
|
|
res_elem.name);
|
|
}
|
|
else
|
|
throw Exception(
|
|
ErrorCodes::ILLEGAL_COLUMN,
|
|
"Cannot convert column `{}` because it is non constant in source stream but must be constant in result",
|
|
res_elem.name);
|
|
}
|
|
|
|
/// Add CAST function to convert into result type if needed.
|
|
if (!res_elem.type->equals(*dst_node->result_type))
|
|
{
|
|
ColumnWithTypeAndName column;
|
|
column.name = res_elem.type->getName();
|
|
column.column = DataTypeString().createColumnConst(0, column.name);
|
|
column.type = std::make_shared<DataTypeString>();
|
|
|
|
const auto * right_arg = &actions_dag->addColumn(std::move(column));
|
|
const auto * left_arg = dst_node;
|
|
|
|
CastDiagnostic diagnostic = {dst_node->result_name, res_elem.name};
|
|
FunctionOverloadResolverPtr func_builder_cast
|
|
= createInternalCastOverloadResolver(CastType::nonAccurate, std::move(diagnostic));
|
|
|
|
NodeRawConstPtrs children = { left_arg, right_arg };
|
|
dst_node = &actions_dag->addFunction(func_builder_cast, std::move(children), {});
|
|
}
|
|
|
|
if (dst_node->column && isColumnConst(*dst_node->column) && !(res_elem.column && isColumnConst(*res_elem.column)))
|
|
{
|
|
NodeRawConstPtrs children = {dst_node};
|
|
dst_node = &actions_dag->addFunction(func_builder_materialize, std::move(children), {});
|
|
}
|
|
|
|
if (dst_node->result_name != res_elem.name)
|
|
{
|
|
if (add_casted_columns)
|
|
{
|
|
if (inputs.contains(dst_node->result_name))
|
|
throw Exception(ErrorCodes::ILLEGAL_COLUMN, "Cannot convert column `{}` to `{}` because other column have same name",
|
|
res_elem.name, dst_node->result_name);
|
|
if (new_names)
|
|
new_names->emplace(res_elem.name, dst_node->result_name);
|
|
|
|
/// Leave current column on same place, add converted to back
|
|
projection[result_col_num] = src_node;
|
|
projection.push_back(dst_node);
|
|
}
|
|
else
|
|
{
|
|
dst_node = &actions_dag->addAlias(*dst_node, res_elem.name);
|
|
projection[result_col_num] = dst_node;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
projection[result_col_num] = dst_node;
|
|
}
|
|
}
|
|
|
|
actions_dag->outputs.swap(projection);
|
|
actions_dag->removeUnusedActions();
|
|
actions_dag->projectInput();
|
|
|
|
return actions_dag;
|
|
}
|
|
|
|
ActionsDAGPtr ActionsDAG::makeAddingColumnActions(ColumnWithTypeAndName column)
|
|
{
|
|
auto adding_column_action = std::make_shared<ActionsDAG>();
|
|
FunctionOverloadResolverPtr func_builder_materialize
|
|
= std::make_unique<FunctionToOverloadResolverAdaptor>(std::make_shared<FunctionMaterialize>());
|
|
|
|
auto column_name = column.name;
|
|
const auto * column_node = &adding_column_action->addColumn(std::move(column));
|
|
NodeRawConstPtrs inputs = {column_node};
|
|
const auto & function_node = adding_column_action->addFunction(func_builder_materialize, std::move(inputs), {});
|
|
const auto & alias_node = adding_column_action->addAlias(function_node, std::move(column_name));
|
|
|
|
adding_column_action->outputs.push_back(&alias_node);
|
|
return adding_column_action;
|
|
}
|
|
|
|
ActionsDAGPtr ActionsDAG::merge(ActionsDAG && first, ActionsDAG && second)
|
|
{
|
|
first.mergeInplace(std::move(second));
|
|
|
|
/// Some actions could become unused. Do not drop inputs to preserve the header.
|
|
first.removeUnusedActions(false);
|
|
|
|
return std::make_shared<ActionsDAG>(std::move(first));
|
|
}
|
|
|
|
void ActionsDAG::mergeInplace(ActionsDAG && second)
|
|
{
|
|
auto & first = *this;
|
|
/// first: x (1), x (2), y ==> x (2), z, x (3)
|
|
/// second: x (1), x (2), x (3) ==> x (3), x (2), x (1)
|
|
/// merge: x (1), x (2), x (3), y =(first)=> x (2), z, x (4), x (3) =(second)=> x (3), x (4), x (2), z
|
|
|
|
/// Will store merged result in `first`.
|
|
|
|
/// This map contains nodes which should be removed from `first` outputs, cause they are used as inputs for `second`.
|
|
/// The second element is the number of removes (cause one node may be repeated several times in result).
|
|
std::unordered_map<const Node *, size_t> removed_first_result;
|
|
/// Map inputs of `second` to nodes of `first`.
|
|
std::unordered_map<const Node *, const Node *> inputs_map;
|
|
|
|
/// Update inputs list.
|
|
{
|
|
/// Outputs may have multiple columns with same name. They also may be used by `second`. Order is important.
|
|
std::unordered_map<std::string_view, std::list<const Node *>> first_result;
|
|
for (const auto & output_node : first.outputs)
|
|
first_result[output_node->result_name].push_back(output_node);
|
|
|
|
for (const auto & input_node : second.inputs)
|
|
{
|
|
auto it = first_result.find(input_node->result_name);
|
|
if (it == first_result.end() || it->second.empty())
|
|
{
|
|
if (first.project_input)
|
|
throw Exception(ErrorCodes::UNKNOWN_IDENTIFIER,
|
|
"Cannot find column {} in ActionsDAG result", input_node->result_name);
|
|
|
|
first.inputs.push_back(input_node);
|
|
}
|
|
else
|
|
{
|
|
inputs_map[input_node] = it->second.front();
|
|
removed_first_result[it->second.front()] += 1;
|
|
it->second.pop_front();
|
|
}
|
|
}
|
|
}
|
|
|
|
/// Replace inputs from `second` to nodes from `first` result.
|
|
for (auto & node : second.nodes)
|
|
{
|
|
for (auto & child : node.children)
|
|
{
|
|
if (child->type == ActionType::INPUT)
|
|
{
|
|
auto it = inputs_map.find(child);
|
|
if (it != inputs_map.end())
|
|
child = it->second;
|
|
}
|
|
}
|
|
}
|
|
|
|
for (auto & output_node : second.outputs)
|
|
{
|
|
if (output_node->type == ActionType::INPUT)
|
|
{
|
|
auto it = inputs_map.find(output_node);
|
|
if (it != inputs_map.end())
|
|
output_node = it->second;
|
|
}
|
|
}
|
|
|
|
/// Update output nodes.
|
|
if (second.project_input)
|
|
{
|
|
first.outputs.swap(second.outputs);
|
|
first.project_input = true;
|
|
}
|
|
else
|
|
{
|
|
/// Add not removed result from first actions.
|
|
for (const auto * output_node : first.outputs)
|
|
{
|
|
auto it = removed_first_result.find(output_node);
|
|
if (it != removed_first_result.end() && it->second > 0)
|
|
--it->second;
|
|
else
|
|
second.outputs.push_back(output_node);
|
|
}
|
|
|
|
first.outputs.swap(second.outputs);
|
|
}
|
|
|
|
first.nodes.splice(first.nodes.end(), std::move(second.nodes));
|
|
|
|
first.projected_output = second.projected_output;
|
|
}
|
|
|
|
void ActionsDAG::mergeNodes(ActionsDAG && second)
|
|
{
|
|
std::unordered_map<std::string, const ActionsDAG::Node *> node_name_to_node;
|
|
for (auto & node : nodes)
|
|
node_name_to_node.emplace(node.result_name, &node);
|
|
|
|
struct Frame
|
|
{
|
|
ActionsDAG::Node * node = nullptr;
|
|
bool visited_children = false;
|
|
};
|
|
|
|
std::unordered_map<const ActionsDAG::Node *, ActionsDAG::Node *> const_node_to_node;
|
|
for (auto & node : second.nodes)
|
|
const_node_to_node.emplace(&node, &node);
|
|
|
|
std::vector<Frame> nodes_to_process;
|
|
nodes_to_process.reserve(second.getOutputs().size());
|
|
for (auto & node : second.getOutputs())
|
|
nodes_to_process.push_back({const_node_to_node.at(node), false /*visited_children*/});
|
|
|
|
std::unordered_set<const ActionsDAG::Node *> nodes_to_move_from_second_dag;
|
|
|
|
while (!nodes_to_process.empty())
|
|
{
|
|
auto & node_to_process = nodes_to_process.back();
|
|
auto * node = node_to_process.node;
|
|
|
|
auto node_it = node_name_to_node.find(node->result_name);
|
|
if (node_it != node_name_to_node.end())
|
|
{
|
|
nodes_to_process.pop_back();
|
|
continue;
|
|
}
|
|
|
|
if (!node_to_process.visited_children)
|
|
{
|
|
node_to_process.visited_children = true;
|
|
|
|
for (auto & child : node->children)
|
|
nodes_to_process.push_back({const_node_to_node.at(child), false /*visited_children*/});
|
|
|
|
/// If node has children process them first
|
|
if (!node->children.empty())
|
|
continue;
|
|
}
|
|
|
|
for (auto & child : node->children)
|
|
child = node_name_to_node.at(child->result_name);
|
|
|
|
node_name_to_node.emplace(node->result_name, node);
|
|
nodes_to_move_from_second_dag.insert(node);
|
|
|
|
nodes_to_process.pop_back();
|
|
}
|
|
|
|
if (nodes_to_move_from_second_dag.empty())
|
|
return;
|
|
|
|
auto second_nodes_end = second.nodes.end();
|
|
for (auto second_node_it = second.nodes.begin(); second_node_it != second_nodes_end;)
|
|
{
|
|
if (!nodes_to_move_from_second_dag.contains(&(*second_node_it)))
|
|
{
|
|
++second_node_it;
|
|
continue;
|
|
}
|
|
|
|
auto node_to_move_it = second_node_it;
|
|
++second_node_it;
|
|
nodes.splice(nodes.end(), second.nodes, node_to_move_it);
|
|
|
|
if (node_to_move_it->type == ActionType::INPUT)
|
|
inputs.push_back(&(*node_to_move_it));
|
|
}
|
|
}
|
|
|
|
ActionsDAG::SplitResult ActionsDAG::split(std::unordered_set<const Node *> split_nodes, bool create_split_nodes_mapping) const
|
|
{
|
|
/// Split DAG into two parts.
|
|
/// (first_nodes, first_outputs) is a part which will have split_list in result.
|
|
/// (second_nodes, second_outputs) is a part which will have same outputs as current actions.
|
|
Nodes first_nodes;
|
|
NodeRawConstPtrs first_outputs;
|
|
|
|
Nodes second_nodes;
|
|
NodeRawConstPtrs second_outputs;
|
|
|
|
/// List of nodes from current actions which are not inputs, but will be in second part.
|
|
NodeRawConstPtrs new_inputs;
|
|
|
|
struct Frame
|
|
{
|
|
const Node * node = nullptr;
|
|
size_t next_child_to_visit = 0;
|
|
};
|
|
|
|
struct Data
|
|
{
|
|
bool needed_by_split_node = false;
|
|
bool visited = false;
|
|
bool used_in_result = false;
|
|
|
|
/// Copies of node in one of the DAGs.
|
|
/// For COLUMN and INPUT both copies may exist.
|
|
Node * to_second = nullptr;
|
|
Node * to_first = nullptr;
|
|
};
|
|
|
|
std::stack<Frame> stack;
|
|
std::unordered_map<const Node *, Data> data;
|
|
|
|
for (const auto & output_node : outputs)
|
|
data[output_node].used_in_result = true;
|
|
|
|
/// DFS. Decide if node is needed by split.
|
|
for (const auto & node : nodes)
|
|
{
|
|
if (!split_nodes.contains(&node))
|
|
continue;
|
|
|
|
auto & cur_data = data[&node];
|
|
if (cur_data.needed_by_split_node)
|
|
continue;
|
|
|
|
cur_data.needed_by_split_node = true;
|
|
stack.push({.node = &node});
|
|
|
|
while (!stack.empty())
|
|
{
|
|
auto & cur_node = stack.top().node;
|
|
stack.pop();
|
|
|
|
for (const auto * child : cur_node->children)
|
|
{
|
|
auto & child_data = data[child];
|
|
if (!child_data.needed_by_split_node)
|
|
{
|
|
child_data.needed_by_split_node = true;
|
|
stack.push({.node = child});
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/// DFS. Move nodes to one of the DAGs.
|
|
for (const auto & node : nodes)
|
|
{
|
|
if (!data[&node].visited)
|
|
stack.push({.node = &node});
|
|
|
|
while (!stack.empty())
|
|
{
|
|
auto & cur = stack.top();
|
|
auto & cur_data = data[cur.node];
|
|
|
|
/// At first, visit all children.
|
|
while (cur.next_child_to_visit < cur.node->children.size())
|
|
{
|
|
const auto * child = cur.node->children[cur.next_child_to_visit];
|
|
auto & child_data = data[child];
|
|
|
|
if (!child_data.visited)
|
|
{
|
|
stack.push({.node = child});
|
|
break;
|
|
}
|
|
|
|
++cur.next_child_to_visit;
|
|
}
|
|
|
|
/// Make a copy part.
|
|
if (cur.next_child_to_visit == cur.node->children.size())
|
|
{
|
|
cur_data.visited = true;
|
|
stack.pop();
|
|
|
|
if (!cur_data.needed_by_split_node)
|
|
{
|
|
auto & copy = second_nodes.emplace_back(*cur.node);
|
|
cur_data.to_second = ©
|
|
|
|
/// Replace children to newly created nodes.
|
|
for (auto & child : copy.children)
|
|
{
|
|
auto & child_data = data[child];
|
|
|
|
/// If children is not created, it may be from split part.
|
|
if (!child_data.to_second)
|
|
{
|
|
if (child->type == ActionType::COLUMN) /// Just create new node for COLUMN action.
|
|
{
|
|
child_data.to_second = &second_nodes.emplace_back(*child);
|
|
}
|
|
else
|
|
{
|
|
/// Node from first part is added as new input.
|
|
Node input_node;
|
|
input_node.type = ActionType::INPUT;
|
|
input_node.result_type = child->result_type;
|
|
input_node.result_name = child->result_name;
|
|
child_data.to_second = &second_nodes.emplace_back(std::move(input_node));
|
|
|
|
new_inputs.push_back(child);
|
|
}
|
|
}
|
|
|
|
child = child_data.to_second;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
auto & copy = first_nodes.emplace_back(*cur.node);
|
|
cur_data.to_first = ©
|
|
|
|
/// Replace children to newly created nodes.
|
|
for (auto & child : copy.children)
|
|
{
|
|
child = data[child].to_first;
|
|
assert(child != nullptr);
|
|
}
|
|
|
|
if (cur_data.used_in_result)
|
|
{
|
|
/// If this node is needed in result, add it as input.
|
|
Node input_node;
|
|
input_node.type = ActionType::INPUT;
|
|
input_node.result_type = cur.node->result_type;
|
|
input_node.result_name = cur.node->result_name;
|
|
cur_data.to_second = &second_nodes.emplace_back(std::move(input_node));
|
|
|
|
if (cur.node->type != ActionType::INPUT)
|
|
new_inputs.push_back(cur.node);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
for (const auto * output_node : outputs)
|
|
second_outputs.push_back(data[output_node].to_second);
|
|
|
|
NodeRawConstPtrs second_inputs;
|
|
NodeRawConstPtrs first_inputs;
|
|
|
|
for (const auto * input_node : inputs)
|
|
{
|
|
const auto & cur = data[input_node];
|
|
if (cur.to_first)
|
|
{
|
|
first_inputs.push_back(cur.to_first);
|
|
|
|
if (cur.to_second)
|
|
first_outputs.push_back(cur.to_first);
|
|
}
|
|
}
|
|
|
|
for (const auto * input : new_inputs)
|
|
{
|
|
const auto & cur = data[input];
|
|
second_inputs.push_back(cur.to_second);
|
|
first_outputs.push_back(cur.to_first);
|
|
}
|
|
|
|
for (const auto * input_node : inputs)
|
|
{
|
|
const auto & cur = data[input_node];
|
|
if (cur.to_second)
|
|
second_inputs.push_back(cur.to_second);
|
|
}
|
|
|
|
auto first_actions = std::make_shared<ActionsDAG>();
|
|
first_actions->nodes.swap(first_nodes);
|
|
first_actions->outputs.swap(first_outputs);
|
|
first_actions->inputs.swap(first_inputs);
|
|
|
|
auto second_actions = std::make_shared<ActionsDAG>();
|
|
second_actions->nodes.swap(second_nodes);
|
|
second_actions->outputs.swap(second_outputs);
|
|
second_actions->inputs.swap(second_inputs);
|
|
|
|
std::unordered_map<const Node *, const Node *> split_nodes_mapping;
|
|
if (create_split_nodes_mapping)
|
|
{
|
|
for (const auto * node : split_nodes)
|
|
split_nodes_mapping[node] = data[node].to_first;
|
|
}
|
|
|
|
return {std::move(first_actions), std::move(second_actions), std::move(split_nodes_mapping)};
|
|
}
|
|
|
|
ActionsDAG::SplitResult ActionsDAG::splitActionsBeforeArrayJoin(const NameSet & array_joined_columns) const
|
|
{
|
|
struct Frame
|
|
{
|
|
const Node * node = nullptr;
|
|
size_t next_child_to_visit = 0;
|
|
};
|
|
|
|
std::unordered_set<const Node *> split_nodes;
|
|
std::unordered_set<const Node *> visited_nodes;
|
|
|
|
std::stack<Frame> stack;
|
|
|
|
/// DFS. Decide if node depends on ARRAY JOIN.
|
|
for (const auto & node : nodes)
|
|
{
|
|
if (visited_nodes.contains(&node))
|
|
continue;
|
|
|
|
visited_nodes.insert(&node);
|
|
stack.push({.node = &node});
|
|
|
|
while (!stack.empty())
|
|
{
|
|
auto & cur = stack.top();
|
|
|
|
/// At first, visit all children. We depend on ARRAY JOIN if any child does.
|
|
while (cur.next_child_to_visit < cur.node->children.size())
|
|
{
|
|
const auto * child = cur.node->children[cur.next_child_to_visit];
|
|
|
|
if (!visited_nodes.contains(child))
|
|
{
|
|
visited_nodes.insert(child);
|
|
stack.push({.node = child});
|
|
break;
|
|
}
|
|
|
|
++cur.next_child_to_visit;
|
|
}
|
|
|
|
if (cur.next_child_to_visit == cur.node->children.size())
|
|
{
|
|
bool depend_on_array_join = false;
|
|
if (cur.node->type == ActionType::INPUT && array_joined_columns.contains(cur.node->result_name))
|
|
depend_on_array_join = true;
|
|
|
|
for (const auto * child : cur.node->children)
|
|
{
|
|
if (!split_nodes.contains(child))
|
|
depend_on_array_join = true;
|
|
}
|
|
|
|
if (!depend_on_array_join)
|
|
split_nodes.insert(cur.node);
|
|
|
|
stack.pop();
|
|
}
|
|
}
|
|
}
|
|
|
|
auto res = split(split_nodes);
|
|
res.second->project_input = project_input;
|
|
return res;
|
|
}
|
|
|
|
ActionsDAG::NodeRawConstPtrs ActionsDAG::getParents(const Node * target) const
|
|
{
|
|
NodeRawConstPtrs parents;
|
|
for (const auto & node : getNodes())
|
|
{
|
|
for (const auto & child : node.children)
|
|
{
|
|
if (child == target)
|
|
{
|
|
parents.push_back(&node);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
return parents;
|
|
}
|
|
|
|
ActionsDAG::SplitResult ActionsDAG::splitActionsBySortingDescription(const NameSet & sort_columns) const
|
|
{
|
|
std::unordered_set<const Node *> split_nodes;
|
|
for (const auto & sort_column : sort_columns)
|
|
if (const auto * node = tryFindInOutputs(sort_column))
|
|
{
|
|
split_nodes.insert(node);
|
|
/// Sorting can materialize const columns, so if we have const expression used in sorting,
|
|
/// we should also add all it's parents, otherwise, we can break the header
|
|
/// (function can expect const column, but will get materialized).
|
|
if (node->column && isColumnConst(*node->column))
|
|
{
|
|
auto parents = getParents(node);
|
|
split_nodes.insert(parents.begin(), parents.end());
|
|
}
|
|
}
|
|
else
|
|
throw Exception(ErrorCodes::LOGICAL_ERROR,
|
|
"Sorting column {} wasn't found in the ActionsDAG's outputs. DAG:\n{}",
|
|
sort_column,
|
|
dumpDAG());
|
|
|
|
auto res = split(split_nodes);
|
|
res.second->project_input = project_input;
|
|
return res;
|
|
}
|
|
|
|
ActionsDAG::SplitResult ActionsDAG::splitActionsForFilter(const std::string & column_name) const
|
|
{
|
|
const auto * node = tryFindInOutputs(column_name);
|
|
if (!node)
|
|
throw Exception(ErrorCodes::LOGICAL_ERROR,
|
|
"Outputs for ActionsDAG does not contain filter column name {}. DAG:\n{}",
|
|
column_name,
|
|
dumpDAG());
|
|
|
|
std::unordered_set<const Node *> split_nodes = {node};
|
|
auto res = split(split_nodes);
|
|
res.second->project_input = project_input;
|
|
return res;
|
|
}
|
|
|
|
namespace
|
|
{
|
|
|
|
struct ConjunctionNodes
|
|
{
|
|
ActionsDAG::NodeRawConstPtrs allowed;
|
|
ActionsDAG::NodeRawConstPtrs rejected;
|
|
};
|
|
|
|
/// Take a node which result is a predicate.
|
|
/// Assuming predicate is a conjunction (probably, trivial).
|
|
/// Find separate conjunctions nodes. Split nodes into allowed and rejected sets.
|
|
/// Allowed predicate is a predicate which can be calculated using only nodes from the allowed_nodes set.
|
|
ConjunctionNodes getConjunctionNodes(ActionsDAG::Node * predicate, std::unordered_set<const ActionsDAG::Node *> allowed_nodes)
|
|
{
|
|
ConjunctionNodes conjunction;
|
|
std::unordered_set<const ActionsDAG::Node *> allowed;
|
|
std::unordered_set<const ActionsDAG::Node *> rejected;
|
|
|
|
/// Parts of predicate in case predicate is conjunction (or just predicate itself).
|
|
std::unordered_set<const ActionsDAG::Node *> predicates;
|
|
{
|
|
std::stack<const ActionsDAG::Node *> stack;
|
|
std::unordered_set<const ActionsDAG::Node *> visited_nodes;
|
|
stack.push(predicate);
|
|
visited_nodes.insert(predicate);
|
|
while (!stack.empty())
|
|
{
|
|
const auto * node = stack.top();
|
|
stack.pop();
|
|
bool is_conjunction = node->type == ActionsDAG::ActionType::FUNCTION && node->function_base->getName() == "and";
|
|
if (is_conjunction)
|
|
{
|
|
for (const auto & child : node->children)
|
|
{
|
|
if (!visited_nodes.contains(child))
|
|
{
|
|
visited_nodes.insert(child);
|
|
stack.push(child);
|
|
}
|
|
}
|
|
}
|
|
else
|
|
predicates.insert(node);
|
|
}
|
|
}
|
|
|
|
struct Frame
|
|
{
|
|
const ActionsDAG::Node * node = nullptr;
|
|
size_t next_child_to_visit = 0;
|
|
size_t num_allowed_children = 0;
|
|
};
|
|
|
|
std::stack<Frame> stack;
|
|
std::unordered_set<const ActionsDAG::Node *> visited_nodes;
|
|
|
|
stack.push({.node = predicate});
|
|
visited_nodes.insert(predicate);
|
|
while (!stack.empty())
|
|
{
|
|
auto & cur = stack.top();
|
|
|
|
/// At first, visit all children.
|
|
while (cur.next_child_to_visit < cur.node->children.size())
|
|
{
|
|
const auto * child = cur.node->children[cur.next_child_to_visit];
|
|
|
|
if (!visited_nodes.contains(child))
|
|
{
|
|
visited_nodes.insert(child);
|
|
stack.push({.node = child});
|
|
break;
|
|
}
|
|
|
|
if (allowed_nodes.contains(child))
|
|
++cur.num_allowed_children;
|
|
++cur.next_child_to_visit;
|
|
}
|
|
|
|
if (cur.next_child_to_visit == cur.node->children.size())
|
|
{
|
|
if (cur.num_allowed_children == cur.node->children.size())
|
|
{
|
|
if (cur.node->type != ActionsDAG::ActionType::ARRAY_JOIN && cur.node->type != ActionsDAG::ActionType::INPUT)
|
|
allowed_nodes.emplace(cur.node);
|
|
}
|
|
|
|
if (predicates.contains(cur.node))
|
|
{
|
|
if (allowed_nodes.contains(cur.node))
|
|
{
|
|
if (allowed.insert(cur.node).second)
|
|
conjunction.allowed.push_back(cur.node);
|
|
|
|
}
|
|
else
|
|
{
|
|
if (rejected.insert(cur.node).second)
|
|
conjunction.rejected.push_back(cur.node);
|
|
}
|
|
}
|
|
|
|
stack.pop();
|
|
}
|
|
}
|
|
|
|
// std::cerr << "Allowed " << conjunction.allowed.size() << std::endl;
|
|
// for (const auto & node : conjunction.allowed)
|
|
// std::cerr << node->result_name << std::endl;
|
|
// std::cerr << "Rejected " << conjunction.rejected.size() << std::endl;
|
|
// for (const auto & node : conjunction.rejected)
|
|
// std::cerr << node->result_name << std::endl;
|
|
|
|
return conjunction;
|
|
}
|
|
|
|
ColumnsWithTypeAndName prepareFunctionArguments(const ActionsDAG::NodeRawConstPtrs & nodes)
|
|
{
|
|
ColumnsWithTypeAndName arguments;
|
|
arguments.reserve(nodes.size());
|
|
|
|
for (const auto * child : nodes)
|
|
{
|
|
ColumnWithTypeAndName argument;
|
|
argument.column = child->column;
|
|
argument.type = child->result_type;
|
|
argument.name = child->result_name;
|
|
|
|
arguments.emplace_back(std::move(argument));
|
|
}
|
|
|
|
return arguments;
|
|
}
|
|
|
|
}
|
|
|
|
/// Create actions which calculate conjunction of selected nodes.
|
|
/// Assume conjunction nodes are predicates (and may be used as arguments of function AND).
|
|
///
|
|
/// Result actions add single column with conjunction result (it is always first in outputs).
|
|
/// No other columns are added or removed.
|
|
ActionsDAGPtr ActionsDAG::cloneActionsForConjunction(NodeRawConstPtrs conjunction, const ColumnsWithTypeAndName & all_inputs)
|
|
{
|
|
if (conjunction.empty())
|
|
return nullptr;
|
|
|
|
auto actions = std::make_shared<ActionsDAG>();
|
|
|
|
FunctionOverloadResolverPtr func_builder_and = std::make_unique<FunctionToOverloadResolverAdaptor>(std::make_shared<FunctionAnd>());
|
|
|
|
std::unordered_map<const ActionsDAG::Node *, const ActionsDAG::Node *> nodes_mapping;
|
|
std::unordered_map<std::string, std::list<const Node *>> required_inputs;
|
|
|
|
struct Frame
|
|
{
|
|
const ActionsDAG::Node * node = nullptr;
|
|
size_t next_child_to_visit = 0;
|
|
};
|
|
|
|
std::stack<Frame> stack;
|
|
|
|
/// DFS. Clone actions.
|
|
for (const auto * predicate : conjunction)
|
|
{
|
|
if (nodes_mapping.contains(predicate))
|
|
continue;
|
|
|
|
stack.push({.node = predicate});
|
|
while (!stack.empty())
|
|
{
|
|
auto & cur = stack.top();
|
|
/// At first, visit all children.
|
|
while (cur.next_child_to_visit < cur.node->children.size())
|
|
{
|
|
const auto * child = cur.node->children[cur.next_child_to_visit];
|
|
|
|
if (!nodes_mapping.contains(child))
|
|
{
|
|
stack.push({.node = child});
|
|
break;
|
|
}
|
|
|
|
++cur.next_child_to_visit;
|
|
}
|
|
|
|
if (cur.next_child_to_visit == cur.node->children.size())
|
|
{
|
|
auto & node = actions->nodes.emplace_back(*cur.node);
|
|
nodes_mapping[cur.node] = &node;
|
|
|
|
for (auto & child : node.children)
|
|
child = nodes_mapping[child];
|
|
|
|
if (node.type == ActionType::INPUT)
|
|
required_inputs[node.result_name].push_back(&node);
|
|
|
|
stack.pop();
|
|
}
|
|
}
|
|
}
|
|
|
|
const Node * result_predicate = nodes_mapping[*conjunction.begin()];
|
|
|
|
if (conjunction.size() > 1)
|
|
{
|
|
NodeRawConstPtrs args;
|
|
args.reserve(conjunction.size());
|
|
for (const auto * predicate : conjunction)
|
|
args.emplace_back(nodes_mapping[predicate]);
|
|
|
|
result_predicate = &actions->addFunction(func_builder_and, std::move(args), {});
|
|
}
|
|
|
|
actions->outputs.push_back(result_predicate);
|
|
|
|
for (const auto & col : all_inputs)
|
|
{
|
|
const Node * input;
|
|
auto & list = required_inputs[col.name];
|
|
if (list.empty())
|
|
input = &actions->addInput(col);
|
|
else
|
|
{
|
|
input = list.front();
|
|
list.pop_front();
|
|
actions->inputs.push_back(input);
|
|
}
|
|
|
|
/// We should not add result_predicate into the outputs for the second time.
|
|
if (input->result_name != result_predicate->result_name)
|
|
actions->outputs.push_back(input);
|
|
}
|
|
|
|
return actions;
|
|
}
|
|
|
|
ActionsDAGPtr ActionsDAG::cloneActionsForFilterPushDown(
|
|
const std::string & filter_name,
|
|
bool can_remove_filter,
|
|
const Names & available_inputs,
|
|
const ColumnsWithTypeAndName & all_inputs)
|
|
{
|
|
Node * predicate = const_cast<Node *>(tryFindInOutputs(filter_name));
|
|
if (!predicate)
|
|
throw Exception(ErrorCodes::LOGICAL_ERROR,
|
|
"Output nodes for ActionsDAG do not contain filter column name {}. DAG:\n{}",
|
|
filter_name,
|
|
dumpDAG());
|
|
|
|
/// If condition is constant let's do nothing.
|
|
/// It means there is nothing to push down or optimization was already applied.
|
|
if (predicate->type == ActionType::COLUMN)
|
|
return nullptr;
|
|
|
|
std::unordered_set<const Node *> allowed_nodes;
|
|
|
|
/// Get input nodes from available_inputs names.
|
|
{
|
|
std::unordered_map<std::string_view, std::list<const Node *>> inputs_map;
|
|
for (const auto & input_node : inputs)
|
|
inputs_map[input_node->result_name].emplace_back(input_node);
|
|
|
|
for (const auto & name : available_inputs)
|
|
{
|
|
auto & inputs_list = inputs_map[name];
|
|
if (inputs_list.empty())
|
|
continue;
|
|
|
|
allowed_nodes.emplace(inputs_list.front());
|
|
inputs_list.pop_front();
|
|
}
|
|
}
|
|
|
|
auto conjunction = getConjunctionNodes(predicate, allowed_nodes);
|
|
|
|
if (conjunction.allowed.empty())
|
|
return nullptr;
|
|
|
|
chassert(predicate->result_type);
|
|
|
|
if (conjunction.rejected.size() == 1)
|
|
{
|
|
chassert(conjunction.rejected.front()->result_type);
|
|
|
|
if (conjunction.allowed.front()->type == ActionType::COLUMN
|
|
&& !conjunction.rejected.front()->result_type->equals(*predicate->result_type))
|
|
{
|
|
/// No further optimization can be done
|
|
return nullptr;
|
|
}
|
|
}
|
|
|
|
auto actions = cloneActionsForConjunction(conjunction.allowed, all_inputs);
|
|
if (!actions)
|
|
return nullptr;
|
|
|
|
/// Now, when actions are created, update the current DAG.
|
|
|
|
if (conjunction.rejected.empty())
|
|
{
|
|
/// The whole predicate was split.
|
|
if (can_remove_filter)
|
|
{
|
|
/// If filter column is not needed, remove it from output nodes.
|
|
std::erase_if(outputs, [&](const Node * node) { return node == predicate; });
|
|
}
|
|
else
|
|
{
|
|
/// Replace predicate result to constant 1.
|
|
Node node;
|
|
node.type = ActionType::COLUMN;
|
|
node.result_name = predicate->result_name;
|
|
node.result_type = predicate->result_type;
|
|
node.column = node.result_type->createColumnConst(0, 1);
|
|
|
|
if (predicate->type != ActionType::INPUT)
|
|
*predicate = std::move(node);
|
|
else
|
|
{
|
|
/// Special case. We cannot replace input to constant inplace.
|
|
/// Because we cannot affect inputs list for actions.
|
|
/// So we just add a new constant and update outputs.
|
|
const auto * new_predicate = &addNode(node);
|
|
for (auto & output_node : outputs)
|
|
if (output_node == predicate)
|
|
output_node = new_predicate;
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
/// Predicate is conjunction, where both allowed and rejected sets are not empty.
|
|
|
|
NodeRawConstPtrs new_children = std::move(conjunction.rejected);
|
|
|
|
if (new_children.size() == 1 && new_children.front()->result_type->equals(*predicate->result_type))
|
|
{
|
|
/// Rejected set has only one predicate. And the type is the same as the result_type.
|
|
/// Just add alias.
|
|
Node node;
|
|
node.type = ActionType::ALIAS;
|
|
node.result_name = predicate->result_name;
|
|
node.result_type = predicate->result_type;
|
|
node.children.swap(new_children);
|
|
*predicate = std::move(node);
|
|
}
|
|
else
|
|
{
|
|
/// Predicate is function AND, which still have more then one argument
|
|
/// or it has one argument of the wrong type.
|
|
/// Just update children and rebuild it.
|
|
if (new_children.size() == 1)
|
|
{
|
|
Node node;
|
|
node.type = ActionType::COLUMN;
|
|
node.result_name = "1";
|
|
node.column = DataTypeUInt8().createColumnConst(0, 1u);
|
|
node.result_type = std::make_shared<DataTypeUInt8>();
|
|
const auto * const_col = &nodes.emplace_back(std::move(node));
|
|
new_children.emplace_back(const_col);
|
|
}
|
|
predicate->children.swap(new_children);
|
|
auto arguments = prepareFunctionArguments(predicate->children);
|
|
|
|
FunctionOverloadResolverPtr func_builder_and = std::make_unique<FunctionToOverloadResolverAdaptor>(std::make_shared<FunctionAnd>());
|
|
|
|
predicate->function_base = func_builder_and->build(arguments);
|
|
predicate->function = predicate->function_base->prepare(arguments);
|
|
}
|
|
}
|
|
|
|
std::unordered_set<const Node *> used_inputs;
|
|
for (const auto * input : inputs)
|
|
{
|
|
if (can_remove_filter && input == predicate)
|
|
continue;
|
|
used_inputs.insert(input);
|
|
}
|
|
|
|
removeUnusedActions(used_inputs);
|
|
return actions;
|
|
}
|
|
|
|
static bool isColumnSortingPreserved(const ActionsDAG::Node * start_node, const String & sorted_column)
|
|
{
|
|
/// only function node can several children
|
|
/// but we support monotonicity check only for functions with one argument
|
|
/// so, currently we consider just first child - it covers majority of cases
|
|
/// TODO: if one parameter is variable and other are constant then we can try to check monotonicity as well
|
|
|
|
/// first find the column
|
|
const ActionsDAG::Node * node = start_node;
|
|
bool found = false;
|
|
while (node)
|
|
{
|
|
/// if column found
|
|
if (node->type == ActionsDAG::ActionType::INPUT && node->result_name == sorted_column)
|
|
{
|
|
found = true;
|
|
break;
|
|
}
|
|
|
|
if (node->children.empty())
|
|
break; /// column not found
|
|
|
|
node = node->children.front();
|
|
}
|
|
if (!found)
|
|
return false;
|
|
|
|
/// if column found, check if sorting is preserved
|
|
const Field field{};
|
|
node = start_node;
|
|
while (node)
|
|
{
|
|
if (node->type == ActionsDAG::ActionType::FUNCTION)
|
|
{
|
|
auto func = node->function_base;
|
|
if (func)
|
|
{
|
|
if (!func->hasInformationAboutMonotonicity())
|
|
return false;
|
|
|
|
const auto & types = func->getArgumentTypes();
|
|
if (types.empty())
|
|
return false;
|
|
|
|
const auto monotonicity = func->getMonotonicityForRange(*types.front(), field, field);
|
|
if (!monotonicity.is_always_monotonic)
|
|
return false;
|
|
}
|
|
}
|
|
|
|
if (node->children.empty())
|
|
break;
|
|
|
|
node = node->children.front();
|
|
}
|
|
return true;
|
|
}
|
|
|
|
bool ActionsDAG::isSortingPreserved(
|
|
const Block & input_header, const SortDescription & sort_description, const String & ignore_output_column) const
|
|
{
|
|
if (sort_description.empty())
|
|
return true;
|
|
|
|
if (hasArrayJoin())
|
|
return false;
|
|
|
|
const Block & output_header = updateHeader(input_header);
|
|
for (const auto & desc : sort_description)
|
|
{
|
|
/// header contains column with the same name
|
|
if (output_header.findByName(desc.column_name))
|
|
{
|
|
/// find the corresponding node in output
|
|
const auto * output_node = tryFindInOutputs(desc.column_name);
|
|
if (!output_node)
|
|
{
|
|
/// sorted column name in header but NOT in expression output -> no expression is applied to it -> sorting preserved
|
|
continue;
|
|
}
|
|
}
|
|
|
|
/// check if any output node is related to the sorted column and sorting order is preserved
|
|
bool preserved = false;
|
|
for (const auto * output_node : outputs)
|
|
{
|
|
if (output_node->result_name == ignore_output_column)
|
|
continue;
|
|
|
|
if (isColumnSortingPreserved(output_node, desc.column_name))
|
|
{
|
|
preserved = true;
|
|
break;
|
|
}
|
|
}
|
|
if (!preserved)
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
ActionsDAGPtr ActionsDAG::buildFilterActionsDAG(
|
|
const NodeRawConstPtrs & filter_nodes,
|
|
const std::unordered_map<std::string, ColumnWithTypeAndName> & node_name_to_input_node_column,
|
|
bool single_output_condition_node)
|
|
{
|
|
if (filter_nodes.empty())
|
|
return nullptr;
|
|
|
|
struct Frame
|
|
{
|
|
const ActionsDAG::Node * node = nullptr;
|
|
bool visited_children = false;
|
|
};
|
|
|
|
auto result_dag = std::make_shared<ActionsDAG>();
|
|
std::unordered_map<std::string, const ActionsDAG::Node *> result_inputs;
|
|
std::unordered_map<const ActionsDAG::Node *, const ActionsDAG::Node *> node_to_result_node;
|
|
|
|
size_t filter_nodes_size = filter_nodes.size();
|
|
|
|
std::vector<Frame> nodes_to_process;
|
|
nodes_to_process.reserve(filter_nodes_size);
|
|
|
|
for (const auto & node : filter_nodes)
|
|
nodes_to_process.push_back({node, false /*visited_children*/});
|
|
|
|
while (!nodes_to_process.empty())
|
|
{
|
|
auto & node_to_process = nodes_to_process.back();
|
|
const auto * node = node_to_process.node;
|
|
|
|
/// Already visited node
|
|
if (node_to_result_node.contains(node))
|
|
{
|
|
nodes_to_process.pop_back();
|
|
continue;
|
|
}
|
|
|
|
const ActionsDAG::Node * result_node = nullptr;
|
|
|
|
auto input_node_it = node_name_to_input_node_column.find(node->result_name);
|
|
if (input_node_it != node_name_to_input_node_column.end())
|
|
{
|
|
result_node = &result_dag->addInput(input_node_it->second);
|
|
node_to_result_node.emplace(node, result_node);
|
|
nodes_to_process.pop_back();
|
|
continue;
|
|
}
|
|
|
|
if (!node_to_process.visited_children)
|
|
{
|
|
node_to_process.visited_children = true;
|
|
|
|
for (const auto & child : node->children)
|
|
nodes_to_process.push_back({child, false /*visited_children*/});
|
|
|
|
/// If node has children process them first
|
|
if (!node->children.empty())
|
|
continue;
|
|
}
|
|
|
|
auto node_type = node->type;
|
|
|
|
switch (node_type)
|
|
{
|
|
case ActionsDAG::ActionType::INPUT:
|
|
{
|
|
auto & result_input = result_inputs[node->result_name];
|
|
if (!result_input)
|
|
result_input = &result_dag->addInput({node->column, node->result_type, node->result_name});
|
|
result_node = result_input;
|
|
break;
|
|
}
|
|
case ActionsDAG::ActionType::COLUMN:
|
|
{
|
|
result_node = &result_dag->addColumn({node->column, node->result_type, node->result_name});
|
|
break;
|
|
}
|
|
case ActionsDAG::ActionType::ALIAS:
|
|
{
|
|
const auto * child = node->children.front();
|
|
result_node = &result_dag->addAlias(*(node_to_result_node.find(child)->second), node->result_name);
|
|
break;
|
|
}
|
|
case ActionsDAG::ActionType::ARRAY_JOIN:
|
|
{
|
|
const auto * child = node->children.front();
|
|
result_node = &result_dag->addArrayJoin(*(node_to_result_node.find(child)->second), {});
|
|
break;
|
|
}
|
|
case ActionsDAG::ActionType::FUNCTION:
|
|
{
|
|
NodeRawConstPtrs function_children;
|
|
function_children.reserve(node->children.size());
|
|
|
|
FunctionOverloadResolverPtr function_overload_resolver;
|
|
|
|
if (node->function_base->getName() == "indexHint")
|
|
{
|
|
ActionsDAG::NodeRawConstPtrs children;
|
|
if (const auto * adaptor = typeid_cast<const FunctionToFunctionBaseAdaptor *>(node->function_base.get()))
|
|
{
|
|
if (const auto * index_hint = typeid_cast<const FunctionIndexHint *>(adaptor->getFunction().get()))
|
|
{
|
|
ActionsDAGPtr index_hint_filter_dag;
|
|
const auto & index_hint_args = index_hint->getActions()->getOutputs();
|
|
|
|
if (index_hint_args.empty())
|
|
index_hint_filter_dag = std::make_shared<ActionsDAG>();
|
|
else
|
|
index_hint_filter_dag = buildFilterActionsDAG(index_hint_args,
|
|
node_name_to_input_node_column,
|
|
false /*single_output_condition_node*/);
|
|
|
|
auto index_hint_function_clone = std::make_shared<FunctionIndexHint>();
|
|
index_hint_function_clone->setActions(std::move(index_hint_filter_dag));
|
|
function_overload_resolver = std::make_shared<FunctionToOverloadResolverAdaptor>(std::move(index_hint_function_clone));
|
|
}
|
|
}
|
|
}
|
|
|
|
for (const auto & child : node->children)
|
|
function_children.push_back(node_to_result_node.find(child)->second);
|
|
|
|
auto [arguments, all_const] = getFunctionArguments(function_children);
|
|
auto function_base = function_overload_resolver ? function_overload_resolver->build(arguments) : node->function_base;
|
|
|
|
result_node = &result_dag->addFunctionImpl(
|
|
function_base,
|
|
std::move(function_children),
|
|
std::move(arguments),
|
|
{},
|
|
node->result_type,
|
|
all_const);
|
|
break;
|
|
}
|
|
}
|
|
|
|
node_to_result_node.emplace(node, result_node);
|
|
nodes_to_process.pop_back();
|
|
}
|
|
|
|
auto & result_dag_outputs = result_dag->getOutputs();
|
|
result_dag_outputs.reserve(filter_nodes_size);
|
|
|
|
for (const auto & node : filter_nodes)
|
|
result_dag_outputs.push_back(node_to_result_node.find(node)->second);
|
|
|
|
if (result_dag_outputs.size() > 1 && single_output_condition_node)
|
|
{
|
|
FunctionOverloadResolverPtr func_builder_and = std::make_unique<FunctionToOverloadResolverAdaptor>(std::make_shared<FunctionAnd>());
|
|
result_dag_outputs = { &result_dag->addFunction(func_builder_and, result_dag_outputs, {}) };
|
|
}
|
|
|
|
return result_dag;
|
|
}
|
|
|
|
ActionsDAG::NodeRawConstPtrs ActionsDAG::extractConjunctionAtoms(const Node * predicate)
|
|
{
|
|
NodeRawConstPtrs atoms;
|
|
|
|
std::stack<const ActionsDAG::Node *> stack;
|
|
stack.push(predicate);
|
|
|
|
while (!stack.empty())
|
|
{
|
|
const auto * node = stack.top();
|
|
stack.pop();
|
|
if (node->type == ActionsDAG::ActionType::FUNCTION)
|
|
{
|
|
const auto & name = node->function_base->getName();
|
|
if (name == "and")
|
|
{
|
|
for (const auto * arg : node->children)
|
|
stack.push(arg);
|
|
|
|
continue;
|
|
}
|
|
}
|
|
|
|
atoms.push_back(node);
|
|
}
|
|
|
|
return atoms;
|
|
}
|
|
|
|
ActionsDAG::NodeRawConstPtrs ActionsDAG::filterNodesByAllowedInputs(
|
|
NodeRawConstPtrs nodes,
|
|
const std::unordered_set<const Node *> & allowed_inputs)
|
|
{
|
|
size_t result_size = 0;
|
|
|
|
std::unordered_map<const ActionsDAG::Node *, bool> can_compute;
|
|
struct Frame
|
|
{
|
|
const ActionsDAG::Node * node;
|
|
size_t next_child_to_visit = 0;
|
|
bool can_compute_all_childern = true;
|
|
};
|
|
|
|
std::stack<Frame> stack;
|
|
|
|
for (const auto * node : nodes)
|
|
{
|
|
if (!can_compute.contains(node))
|
|
stack.push({node});
|
|
|
|
while (!stack.empty())
|
|
{
|
|
auto & frame = stack.top();
|
|
bool need_visit_child = false;
|
|
while (frame.next_child_to_visit < frame.node->children.size())
|
|
{
|
|
auto it = can_compute.find(frame.node->children[frame.next_child_to_visit]);
|
|
if (it == can_compute.end())
|
|
{
|
|
stack.push({frame.node->children[frame.next_child_to_visit]});
|
|
need_visit_child = true;
|
|
break;
|
|
}
|
|
|
|
frame.can_compute_all_childern &= it->second;
|
|
++frame.next_child_to_visit;
|
|
}
|
|
|
|
if (need_visit_child)
|
|
continue;
|
|
|
|
if (frame.node->type == ActionsDAG::ActionType::INPUT)
|
|
can_compute[frame.node] = allowed_inputs.contains(frame.node);
|
|
else
|
|
can_compute[frame.node] = frame.can_compute_all_childern;
|
|
|
|
stack.pop();
|
|
}
|
|
|
|
if (can_compute.at(node))
|
|
{
|
|
nodes[result_size] = node;
|
|
++result_size;
|
|
}
|
|
}
|
|
|
|
nodes.resize(result_size);
|
|
return nodes;
|
|
}
|
|
|
|
FindOriginalNodeForOutputName::FindOriginalNodeForOutputName(const ActionsDAGPtr & actions_)
|
|
:actions(actions_)
|
|
{
|
|
const auto & actions_outputs = actions->getOutputs();
|
|
for (const auto * output_node : actions_outputs)
|
|
{
|
|
/// find input node which refers to the output node
|
|
/// consider only aliases on the path
|
|
const auto * node = output_node;
|
|
while (node)
|
|
{
|
|
if (node->type == ActionsDAG::ActionType::ALIAS)
|
|
{
|
|
node = node->children.front();
|
|
}
|
|
/// materiailze() function can occur when dealing with views
|
|
/// TODO: not sure if it should be done here, looks too generic place
|
|
else if (node->type == ActionsDAG::ActionType::FUNCTION && node->function_base->getName() == "materialize")
|
|
{
|
|
chassert(node->children.size() == 1);
|
|
node = node->children.front();
|
|
}
|
|
else
|
|
break;
|
|
}
|
|
if (node && node->type == ActionsDAG::ActionType::INPUT)
|
|
index.emplace(output_node->result_name, node);
|
|
}
|
|
}
|
|
|
|
const ActionsDAG::Node * FindOriginalNodeForOutputName::find(const String & output_name)
|
|
{
|
|
const auto it = index.find(output_name);
|
|
if (it == index.end())
|
|
return nullptr;
|
|
|
|
return it->second;
|
|
}
|
|
|
|
FindAliasForInputName::FindAliasForInputName(const ActionsDAGPtr & actions_)
|
|
:actions(actions_)
|
|
{
|
|
const auto & actions_outputs = actions->getOutputs();
|
|
for (const auto * output_node : actions_outputs)
|
|
{
|
|
/// find input node which corresponds to alias
|
|
const auto * node = output_node;
|
|
while (node && node->type == ActionsDAG::ActionType::ALIAS)
|
|
{
|
|
/// alias has only one child
|
|
chassert(node->children.size() == 1);
|
|
node = node->children.front();
|
|
}
|
|
if (node && node->type == ActionsDAG::ActionType::INPUT)
|
|
/// node can have several aliases but we consider only the first one
|
|
index.emplace(node->result_name, output_node);
|
|
}
|
|
}
|
|
|
|
const ActionsDAG::Node * FindAliasForInputName::find(const String & name)
|
|
{
|
|
const auto it = index.find(name);
|
|
if (it == index.end())
|
|
return nullptr;
|
|
|
|
return it->second;
|
|
}
|
|
|
|
}
|