2022-09-15 14:09:30 +00:00
|
|
|
#include <Planner/PlannerJoinTree.h>
|
|
|
|
|
|
|
|
#include <DataTypes/DataTypeString.h>
|
|
|
|
|
|
|
|
#include <Functions/FunctionFactory.h>
|
|
|
|
#include <Functions/CastOverloadResolver.h>
|
|
|
|
|
2022-10-12 14:16:01 +00:00
|
|
|
#include <Access/Common/AccessFlags.h>
|
|
|
|
#include <Access/ContextAccess.h>
|
|
|
|
|
2022-09-15 14:09:30 +00:00
|
|
|
#include <Storages/IStorage.h>
|
2022-09-28 11:20:24 +00:00
|
|
|
#include <Storages/StorageDictionary.h>
|
2022-09-15 14:09:30 +00:00
|
|
|
|
|
|
|
#include <Analyzer/ColumnNode.h>
|
|
|
|
#include <Analyzer/TableNode.h>
|
|
|
|
#include <Analyzer/TableFunctionNode.h>
|
|
|
|
#include <Analyzer/QueryNode.h>
|
|
|
|
#include <Analyzer/UnionNode.h>
|
|
|
|
#include <Analyzer/JoinNode.h>
|
|
|
|
#include <Analyzer/ArrayJoinNode.h>
|
|
|
|
|
|
|
|
#include <Processors/Sources/NullSource.h>
|
2022-10-18 11:35:04 +00:00
|
|
|
#include <Processors/QueryPlan/SortingStep.h>
|
|
|
|
#include <Processors/QueryPlan/CreateSetAndFilterOnTheFlyStep.h>
|
2022-09-15 14:09:30 +00:00
|
|
|
#include <Processors/QueryPlan/ReadFromPreparedSource.h>
|
|
|
|
#include <Processors/QueryPlan/ExpressionStep.h>
|
|
|
|
#include <Processors/QueryPlan/JoinStep.h>
|
|
|
|
#include <Processors/QueryPlan/ArrayJoinStep.h>
|
|
|
|
|
|
|
|
#include <Interpreters/Context.h>
|
|
|
|
#include <Interpreters/IJoin.h>
|
|
|
|
#include <Interpreters/TableJoin.h>
|
|
|
|
#include <Interpreters/HashJoin.h>
|
|
|
|
#include <Interpreters/ArrayJoinAction.h>
|
|
|
|
|
2022-12-27 11:08:56 +00:00
|
|
|
#include <Planner/CollectColumnIndetifiers.h>
|
2022-09-15 14:09:30 +00:00
|
|
|
#include <Planner/Planner.h>
|
|
|
|
#include <Planner/PlannerJoins.h>
|
|
|
|
#include <Planner/PlannerActionsVisitor.h>
|
|
|
|
#include <Planner/Utils.h>
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
2022-09-27 15:04:03 +00:00
|
|
|
namespace ErrorCodes
|
|
|
|
{
|
|
|
|
extern const int INVALID_JOIN_ON_EXPRESSION;
|
2022-10-04 20:45:47 +00:00
|
|
|
extern const int LOGICAL_ERROR;
|
|
|
|
extern const int NOT_IMPLEMENTED;
|
|
|
|
extern const int SYNTAX_ERROR;
|
2022-10-12 14:16:01 +00:00
|
|
|
extern const int ACCESS_DENIED;
|
2022-09-27 15:04:03 +00:00
|
|
|
}
|
|
|
|
|
2022-09-15 14:09:30 +00:00
|
|
|
namespace
|
|
|
|
{
|
|
|
|
|
2022-10-12 14:16:01 +00:00
|
|
|
/// Check if current user has privileges to SELECT columns from table
|
|
|
|
void checkAccessRights(const TableNode & table_node, const Names & column_names, const ContextPtr & query_context)
|
|
|
|
{
|
|
|
|
const auto & storage_id = table_node.getStorageID();
|
|
|
|
const auto & storage_snapshot = table_node.getStorageSnapshot();
|
|
|
|
|
|
|
|
if (column_names.empty())
|
|
|
|
{
|
|
|
|
/** For a trivial queries like "SELECT count() FROM table", "SELECT 1 FROM table" access is granted if at least
|
|
|
|
* one table column is accessible.
|
|
|
|
*/
|
|
|
|
auto access = query_context->getAccess();
|
|
|
|
|
|
|
|
for (const auto & column : storage_snapshot->metadata->getColumns())
|
|
|
|
{
|
|
|
|
if (access->isGranted(AccessType::SELECT, storage_id.database_name, storage_id.table_name, column.name))
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
throw Exception(ErrorCodes::ACCESS_DENIED,
|
|
|
|
"{}: Not enough privileges. To execute this query it's necessary to have grant SELECT for at least one column on {}",
|
|
|
|
query_context->getUserName(),
|
|
|
|
storage_id.getFullTableName());
|
|
|
|
}
|
|
|
|
|
|
|
|
query_context->checkAccess(AccessType::SELECT, storage_id, column_names);
|
|
|
|
}
|
|
|
|
|
2022-09-15 14:09:30 +00:00
|
|
|
QueryPlan buildQueryPlanForTableExpression(QueryTreeNodePtr table_expression,
|
|
|
|
SelectQueryInfo & select_query_info,
|
|
|
|
const SelectQueryOptions & select_query_options,
|
|
|
|
PlannerContextPtr & planner_context)
|
|
|
|
{
|
|
|
|
auto * table_node = table_expression->as<TableNode>();
|
|
|
|
auto * table_function_node = table_expression->as<TableFunctionNode>();
|
|
|
|
auto * query_node = table_expression->as<QueryNode>();
|
|
|
|
auto * union_node = table_expression->as<UnionNode>();
|
|
|
|
|
|
|
|
QueryPlan query_plan;
|
|
|
|
|
|
|
|
auto & table_expression_data = planner_context->getTableExpressionDataOrThrow(table_expression);
|
|
|
|
|
|
|
|
if (table_node || table_function_node)
|
|
|
|
{
|
|
|
|
const auto & storage = table_node ? table_node->getStorage() : table_function_node->getStorage();
|
|
|
|
const auto & storage_snapshot = table_node ? table_node->getStorageSnapshot() : table_function_node->getStorageSnapshot();
|
|
|
|
|
|
|
|
auto table_expression_query_info = select_query_info;
|
|
|
|
table_expression_query_info.table_expression = table_expression;
|
|
|
|
|
|
|
|
if (table_node)
|
|
|
|
table_expression_query_info.table_expression_modifiers = table_node->getTableExpressionModifiers();
|
|
|
|
else
|
|
|
|
table_expression_query_info.table_expression_modifiers = table_function_node->getTableExpressionModifiers();
|
|
|
|
|
2022-10-12 14:16:01 +00:00
|
|
|
auto & query_context = planner_context->getQueryContext();
|
|
|
|
|
|
|
|
auto from_stage = storage->getQueryProcessingStage(query_context, select_query_options.to_stage, storage_snapshot, table_expression_query_info);
|
2022-11-17 18:44:26 +00:00
|
|
|
|
|
|
|
Names columns_names = table_expression_data.getColumnNames();
|
2022-09-15 14:09:30 +00:00
|
|
|
|
2022-10-12 14:16:01 +00:00
|
|
|
/** The current user must have the SELECT privilege.
|
2022-10-19 16:49:17 +00:00
|
|
|
* We do not check access rights for table functions because they have been already checked in ITableFunction::execute().
|
2022-10-12 14:16:01 +00:00
|
|
|
*/
|
|
|
|
if (table_node)
|
2022-10-19 16:49:17 +00:00
|
|
|
{
|
|
|
|
auto column_names_with_aliases = columns_names;
|
|
|
|
const auto & alias_columns_names = table_expression_data.getAliasColumnsNames();
|
|
|
|
column_names_with_aliases.insert(column_names_with_aliases.end(), alias_columns_names.begin(), alias_columns_names.end());
|
|
|
|
checkAccessRights(*table_node, column_names_with_aliases, planner_context->getQueryContext());
|
|
|
|
}
|
2022-10-12 14:16:01 +00:00
|
|
|
|
2022-10-19 16:49:17 +00:00
|
|
|
if (columns_names.empty())
|
2022-09-15 14:09:30 +00:00
|
|
|
{
|
|
|
|
auto column_names_and_types = storage_snapshot->getColumns(GetColumnsOptions(GetColumnsOptions::All).withSubcolumns());
|
2022-10-12 11:26:02 +00:00
|
|
|
auto additional_column_to_read = column_names_and_types.front();
|
2022-09-15 14:09:30 +00:00
|
|
|
|
2022-10-12 11:26:02 +00:00
|
|
|
const auto & column_identifier = planner_context->getGlobalPlannerContext()->createColumnIdentifier(additional_column_to_read, table_expression);
|
2022-10-19 16:49:17 +00:00
|
|
|
columns_names.push_back(additional_column_to_read.name);
|
2022-10-12 11:26:02 +00:00
|
|
|
table_expression_data.addColumn(additional_column_to_read, column_identifier);
|
2022-09-15 14:09:30 +00:00
|
|
|
}
|
|
|
|
|
2022-10-12 11:26:02 +00:00
|
|
|
size_t max_block_size = query_context->getSettingsRef().max_block_size;
|
|
|
|
size_t max_streams = query_context->getSettingsRef().max_threads;
|
|
|
|
|
2022-10-19 16:49:17 +00:00
|
|
|
bool need_rewrite_query_with_final = storage->needRewriteQueryWithFinal(columns_names);
|
2022-10-12 11:26:02 +00:00
|
|
|
if (need_rewrite_query_with_final)
|
2022-09-15 14:09:30 +00:00
|
|
|
{
|
2022-10-12 11:26:02 +00:00
|
|
|
if (table_expression_query_info.table_expression_modifiers)
|
|
|
|
{
|
|
|
|
const auto & table_expression_modifiers = table_expression_query_info.table_expression_modifiers;
|
|
|
|
auto sample_size_ratio = table_expression_modifiers->getSampleSizeRatio();
|
|
|
|
auto sample_offset_ratio = table_expression_modifiers->getSampleOffsetRatio();
|
|
|
|
|
|
|
|
table_expression_query_info.table_expression_modifiers = TableExpressionModifiers(true /*has_final*/,
|
|
|
|
sample_size_ratio,
|
|
|
|
sample_offset_ratio);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
table_expression_query_info.table_expression_modifiers = TableExpressionModifiers(true /*has_final*/,
|
|
|
|
{} /*sample_size_ratio*/,
|
|
|
|
{} /*sample_offset_ratio*/);
|
|
|
|
}
|
2022-09-15 14:09:30 +00:00
|
|
|
}
|
|
|
|
|
2022-10-19 16:49:17 +00:00
|
|
|
storage->read(query_plan, columns_names, storage_snapshot, table_expression_query_info, query_context, from_stage, max_block_size, max_streams);
|
2022-10-12 11:26:02 +00:00
|
|
|
|
2022-09-15 14:09:30 +00:00
|
|
|
/// Create step which reads from empty source if storage has no data.
|
|
|
|
if (!query_plan.isInitialized())
|
|
|
|
{
|
2022-10-19 16:49:17 +00:00
|
|
|
auto source_header = storage_snapshot->getSampleBlockForColumns(columns_names);
|
2022-09-15 14:09:30 +00:00
|
|
|
Pipe pipe(std::make_shared<NullSource>(source_header));
|
|
|
|
auto read_from_pipe = std::make_unique<ReadFromPreparedSource>(std::move(pipe));
|
|
|
|
read_from_pipe->setStepDescription("Read from NullSource");
|
|
|
|
query_plan.addStep(std::move(read_from_pipe));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (query_node || union_node)
|
|
|
|
{
|
|
|
|
auto subquery_options = select_query_options.subquery();
|
2022-12-06 09:44:38 +00:00
|
|
|
Planner subquery_planner(table_expression, subquery_options, planner_context->getGlobalPlannerContext());
|
2022-09-15 14:09:30 +00:00
|
|
|
subquery_planner.buildQueryPlanIfNeeded();
|
|
|
|
query_plan = std::move(subquery_planner).extractQueryPlan();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
throw Exception(ErrorCodes::LOGICAL_ERROR, "Expected table, table function, query or union. Actual {}", table_expression->formatASTForErrorMessage());
|
|
|
|
}
|
|
|
|
|
|
|
|
auto rename_actions_dag = std::make_shared<ActionsDAG>(query_plan.getCurrentDataStream().header.getColumnsWithTypeAndName());
|
2022-11-08 13:25:23 +00:00
|
|
|
ActionsDAG::NodeRawConstPtrs updated_actions_dag_outputs;
|
2022-09-15 14:09:30 +00:00
|
|
|
|
2022-10-19 16:49:17 +00:00
|
|
|
for (auto & output_node : rename_actions_dag->getOutputs())
|
2022-09-15 14:09:30 +00:00
|
|
|
{
|
2022-10-19 16:49:17 +00:00
|
|
|
const auto * column_identifier = table_expression_data.getColumnIdentifierOrNull(output_node->result_name);
|
|
|
|
if (!column_identifier)
|
|
|
|
continue;
|
|
|
|
|
2022-11-08 13:25:23 +00:00
|
|
|
updated_actions_dag_outputs.push_back(&rename_actions_dag->addAlias(*output_node, *column_identifier));
|
2022-09-15 14:09:30 +00:00
|
|
|
}
|
|
|
|
|
2022-11-08 13:25:23 +00:00
|
|
|
rename_actions_dag->getOutputs() = std::move(updated_actions_dag_outputs);
|
|
|
|
|
2022-09-15 14:09:30 +00:00
|
|
|
auto rename_step = std::make_unique<ExpressionStep>(query_plan.getCurrentDataStream(), rename_actions_dag);
|
|
|
|
rename_step->setStepDescription("Change column names to column identifiers");
|
|
|
|
query_plan.addStep(std::move(rename_step));
|
|
|
|
|
|
|
|
return query_plan;
|
|
|
|
}
|
|
|
|
|
|
|
|
QueryPlan buildQueryPlanForJoinNode(QueryTreeNodePtr join_tree_node,
|
|
|
|
SelectQueryInfo & select_query_info,
|
|
|
|
const SelectQueryOptions & select_query_options,
|
2022-12-23 19:33:46 +00:00
|
|
|
const ColumnIdentifierSet & outer_scope_columns,
|
2022-09-15 14:09:30 +00:00
|
|
|
PlannerContextPtr & planner_context)
|
|
|
|
{
|
|
|
|
auto & join_node = join_tree_node->as<JoinNode &>();
|
|
|
|
|
2022-12-23 19:33:46 +00:00
|
|
|
ColumnIdentifierSet current_scope_columns = outer_scope_columns;
|
2022-12-27 11:08:56 +00:00
|
|
|
collectTopLevelColumnIdentifiers(join_tree_node, planner_context, current_scope_columns);
|
2022-12-23 19:33:46 +00:00
|
|
|
|
2022-09-15 14:09:30 +00:00
|
|
|
auto left_plan = buildQueryPlanForJoinTreeNode(join_node.getLeftTableExpression(),
|
|
|
|
select_query_info,
|
|
|
|
select_query_options,
|
2022-12-23 19:33:46 +00:00
|
|
|
current_scope_columns,
|
2022-09-15 14:09:30 +00:00
|
|
|
planner_context);
|
|
|
|
auto left_plan_output_columns = left_plan.getCurrentDataStream().header.getColumnsWithTypeAndName();
|
|
|
|
|
|
|
|
auto right_plan = buildQueryPlanForJoinTreeNode(join_node.getRightTableExpression(),
|
|
|
|
select_query_info,
|
|
|
|
select_query_options,
|
2022-12-23 19:33:46 +00:00
|
|
|
current_scope_columns,
|
2022-09-15 14:09:30 +00:00
|
|
|
planner_context);
|
|
|
|
auto right_plan_output_columns = right_plan.getCurrentDataStream().header.getColumnsWithTypeAndName();
|
|
|
|
|
|
|
|
JoinClausesAndActions join_clauses_and_actions;
|
2022-09-28 11:20:24 +00:00
|
|
|
JoinKind join_kind = join_node.getKind();
|
2022-09-15 14:09:30 +00:00
|
|
|
|
2022-11-10 18:17:10 +00:00
|
|
|
std::optional<bool> join_constant;
|
|
|
|
|
|
|
|
if (join_node.getStrictness() == JoinStrictness::All)
|
|
|
|
join_constant = tryExtractConstantFromJoinNode(join_tree_node);
|
|
|
|
|
2022-09-28 11:20:24 +00:00
|
|
|
if (join_constant)
|
|
|
|
{
|
|
|
|
/** If there is JOIN with always true constant, we transform it to cross.
|
|
|
|
* If there is JOIN with always false constant, we do not process JOIN keys.
|
|
|
|
* It is expected by join algorithm to handle such case.
|
|
|
|
*
|
|
|
|
* Example: SELECT * FROM test_table AS t1 INNER JOIN test_table AS t2 ON 1;
|
|
|
|
*/
|
|
|
|
if (*join_constant)
|
|
|
|
join_kind = JoinKind::Cross;
|
|
|
|
}
|
|
|
|
else if (join_node.isOnJoinExpression())
|
2022-09-15 14:09:30 +00:00
|
|
|
{
|
|
|
|
join_clauses_and_actions = buildJoinClausesAndActions(left_plan_output_columns,
|
|
|
|
right_plan_output_columns,
|
|
|
|
join_tree_node,
|
|
|
|
planner_context);
|
|
|
|
|
|
|
|
join_clauses_and_actions.left_join_expressions_actions->projectInput();
|
|
|
|
auto left_join_expressions_actions_step = std::make_unique<ExpressionStep>(left_plan.getCurrentDataStream(), join_clauses_and_actions.left_join_expressions_actions);
|
|
|
|
left_join_expressions_actions_step->setStepDescription("JOIN actions");
|
|
|
|
left_plan.addStep(std::move(left_join_expressions_actions_step));
|
|
|
|
|
|
|
|
join_clauses_and_actions.right_join_expressions_actions->projectInput();
|
|
|
|
auto right_join_expressions_actions_step = std::make_unique<ExpressionStep>(right_plan.getCurrentDataStream(), join_clauses_and_actions.right_join_expressions_actions);
|
|
|
|
right_join_expressions_actions_step->setStepDescription("JOIN actions");
|
|
|
|
right_plan.addStep(std::move(right_join_expressions_actions_step));
|
|
|
|
}
|
|
|
|
|
|
|
|
std::unordered_map<ColumnIdentifier, DataTypePtr> left_plan_column_name_to_cast_type;
|
|
|
|
std::unordered_map<ColumnIdentifier, DataTypePtr> right_plan_column_name_to_cast_type;
|
|
|
|
|
|
|
|
if (join_node.isUsingJoinExpression())
|
|
|
|
{
|
|
|
|
auto & join_node_using_columns_list = join_node.getJoinExpression()->as<ListNode &>();
|
|
|
|
for (auto & join_node_using_node : join_node_using_columns_list.getNodes())
|
|
|
|
{
|
|
|
|
auto & join_node_using_column_node = join_node_using_node->as<ColumnNode &>();
|
|
|
|
auto & inner_columns_list = join_node_using_column_node.getExpressionOrThrow()->as<ListNode &>();
|
|
|
|
|
|
|
|
auto & left_inner_column_node = inner_columns_list.getNodes().at(0);
|
|
|
|
auto & left_inner_column = left_inner_column_node->as<ColumnNode &>();
|
|
|
|
|
|
|
|
auto & right_inner_column_node = inner_columns_list.getNodes().at(1);
|
|
|
|
auto & right_inner_column = right_inner_column_node->as<ColumnNode &>();
|
|
|
|
|
|
|
|
const auto & join_node_using_column_node_type = join_node_using_column_node.getColumnType();
|
|
|
|
if (!left_inner_column.getColumnType()->equals(*join_node_using_column_node_type))
|
|
|
|
{
|
2022-10-19 16:49:17 +00:00
|
|
|
const auto & left_inner_column_identifier = planner_context->getColumnNodeIdentifierOrThrow(left_inner_column_node);
|
2022-09-15 14:09:30 +00:00
|
|
|
left_plan_column_name_to_cast_type.emplace(left_inner_column_identifier, join_node_using_column_node_type);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!right_inner_column.getColumnType()->equals(*join_node_using_column_node_type))
|
|
|
|
{
|
2022-10-19 16:49:17 +00:00
|
|
|
const auto & right_inner_column_identifier = planner_context->getColumnNodeIdentifierOrThrow(right_inner_column_node);
|
2022-09-15 14:09:30 +00:00
|
|
|
right_plan_column_name_to_cast_type.emplace(right_inner_column_identifier, join_node_using_column_node_type);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
auto join_cast_plan_output_nodes = [&](QueryPlan & plan_to_add_cast, std::unordered_map<std::string, DataTypePtr> & plan_column_name_to_cast_type)
|
|
|
|
{
|
|
|
|
auto cast_actions_dag = std::make_shared<ActionsDAG>(plan_to_add_cast.getCurrentDataStream().header.getColumnsWithTypeAndName());
|
|
|
|
|
|
|
|
for (auto & output_node : cast_actions_dag->getOutputs())
|
|
|
|
{
|
|
|
|
auto it = plan_column_name_to_cast_type.find(output_node->result_name);
|
|
|
|
if (it == plan_column_name_to_cast_type.end())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
const auto & cast_type = it->second;
|
|
|
|
auto cast_type_name = cast_type->getName();
|
|
|
|
Field cast_type_constant_value(cast_type_name);
|
|
|
|
|
|
|
|
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 = &cast_actions_dag->addColumn(std::move(column));
|
|
|
|
|
|
|
|
FunctionCastBase::Diagnostic diagnostic = {output_node->result_name, output_node->result_name};
|
|
|
|
FunctionOverloadResolverPtr func_builder_cast
|
|
|
|
= CastInternalOverloadResolver<CastType::nonAccurate>::createImpl(std::move(diagnostic));
|
|
|
|
|
|
|
|
ActionsDAG::NodeRawConstPtrs children = {output_node, cast_type_constant_node};
|
|
|
|
output_node = &cast_actions_dag->addFunction(func_builder_cast, std::move(children), output_node->result_name);
|
|
|
|
}
|
|
|
|
|
|
|
|
cast_actions_dag->projectInput();
|
|
|
|
auto cast_join_columns_step
|
|
|
|
= std::make_unique<ExpressionStep>(plan_to_add_cast.getCurrentDataStream(), std::move(cast_actions_dag));
|
|
|
|
cast_join_columns_step->setStepDescription("Cast JOIN USING columns");
|
|
|
|
plan_to_add_cast.addStep(std::move(cast_join_columns_step));
|
|
|
|
};
|
|
|
|
|
|
|
|
if (!left_plan_column_name_to_cast_type.empty())
|
|
|
|
join_cast_plan_output_nodes(left_plan, left_plan_column_name_to_cast_type);
|
|
|
|
|
|
|
|
if (!right_plan_column_name_to_cast_type.empty())
|
|
|
|
join_cast_plan_output_nodes(right_plan, right_plan_column_name_to_cast_type);
|
|
|
|
|
|
|
|
const auto & query_context = planner_context->getQueryContext();
|
2022-10-18 11:35:04 +00:00
|
|
|
const auto & settings = query_context->getSettingsRef();
|
|
|
|
|
|
|
|
bool join_use_nulls = settings.join_use_nulls;
|
2022-09-15 14:09:30 +00:00
|
|
|
auto to_nullable_function = FunctionFactory::instance().get("toNullable", query_context);
|
|
|
|
|
|
|
|
auto join_cast_plan_columns_to_nullable = [&](QueryPlan & plan_to_add_cast)
|
|
|
|
{
|
|
|
|
auto cast_actions_dag = std::make_shared<ActionsDAG>(plan_to_add_cast.getCurrentDataStream().header.getColumnsWithTypeAndName());
|
|
|
|
|
|
|
|
for (auto & output_node : cast_actions_dag->getOutputs())
|
|
|
|
{
|
|
|
|
if (planner_context->getGlobalPlannerContext()->hasColumnIdentifier(output_node->result_name))
|
|
|
|
output_node = &cast_actions_dag->addFunction(to_nullable_function, {output_node}, output_node->result_name);
|
|
|
|
}
|
|
|
|
|
|
|
|
cast_actions_dag->projectInput();
|
|
|
|
auto cast_join_columns_step = std::make_unique<ExpressionStep>(plan_to_add_cast.getCurrentDataStream(), std::move(cast_actions_dag));
|
|
|
|
cast_join_columns_step->setStepDescription("Cast JOIN columns to Nullable");
|
|
|
|
plan_to_add_cast.addStep(std::move(cast_join_columns_step));
|
|
|
|
};
|
|
|
|
|
|
|
|
if (join_use_nulls)
|
|
|
|
{
|
|
|
|
if (isFull(join_kind))
|
|
|
|
{
|
|
|
|
join_cast_plan_columns_to_nullable(left_plan);
|
|
|
|
join_cast_plan_columns_to_nullable(right_plan);
|
|
|
|
}
|
|
|
|
else if (isLeft(join_kind))
|
|
|
|
{
|
|
|
|
join_cast_plan_columns_to_nullable(right_plan);
|
|
|
|
}
|
|
|
|
else if (isRight(join_kind))
|
|
|
|
{
|
|
|
|
join_cast_plan_columns_to_nullable(left_plan);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-18 11:35:04 +00:00
|
|
|
auto table_join = std::make_shared<TableJoin>(settings, query_context->getTemporaryVolume());
|
2022-09-15 14:09:30 +00:00
|
|
|
table_join->getTableJoin() = join_node.toASTTableJoin()->as<ASTTableJoin &>();
|
2022-09-28 11:20:24 +00:00
|
|
|
table_join->getTableJoin().kind = join_kind;
|
|
|
|
|
|
|
|
if (join_kind == JoinKind::Comma)
|
2022-10-18 11:35:04 +00:00
|
|
|
{
|
|
|
|
join_kind = JoinKind::Cross;
|
2022-09-15 14:09:30 +00:00
|
|
|
table_join->getTableJoin().kind = JoinKind::Cross;
|
2022-10-18 11:35:04 +00:00
|
|
|
}
|
2022-09-27 15:04:03 +00:00
|
|
|
|
2022-09-28 11:20:24 +00:00
|
|
|
table_join->setIsJoinWithConstant(join_constant != std::nullopt);
|
2022-09-15 14:09:30 +00:00
|
|
|
|
|
|
|
if (join_node.isOnJoinExpression())
|
|
|
|
{
|
|
|
|
const auto & join_clauses = join_clauses_and_actions.join_clauses;
|
2022-09-27 15:04:03 +00:00
|
|
|
bool is_asof = table_join->strictness() == JoinStrictness::Asof;
|
|
|
|
|
|
|
|
if (join_clauses.size() > 1)
|
|
|
|
{
|
|
|
|
if (is_asof)
|
|
|
|
throw Exception(ErrorCodes::NOT_IMPLEMENTED,
|
|
|
|
"ASOF join {} doesn't support multiple ORs for keys in JOIN ON section",
|
|
|
|
join_node.formatASTForErrorMessage());
|
|
|
|
}
|
|
|
|
|
2022-09-15 14:09:30 +00:00
|
|
|
auto & table_join_clauses = table_join->getClauses();
|
|
|
|
|
|
|
|
for (const auto & join_clause : join_clauses)
|
|
|
|
{
|
|
|
|
table_join_clauses.emplace_back();
|
|
|
|
auto & table_join_clause = table_join_clauses.back();
|
|
|
|
|
|
|
|
const auto & join_clause_left_key_nodes = join_clause.getLeftKeyNodes();
|
|
|
|
const auto & join_clause_right_key_nodes = join_clause.getRightKeyNodes();
|
|
|
|
|
|
|
|
size_t join_clause_key_nodes_size = join_clause_left_key_nodes.size();
|
|
|
|
assert(join_clause_key_nodes_size == join_clause_right_key_nodes.size());
|
|
|
|
|
|
|
|
for (size_t i = 0; i < join_clause_key_nodes_size; ++i)
|
|
|
|
{
|
|
|
|
table_join_clause.key_names_left.push_back(join_clause_left_key_nodes[i]->result_name);
|
|
|
|
table_join_clause.key_names_right.push_back(join_clause_right_key_nodes[i]->result_name);
|
|
|
|
}
|
|
|
|
|
|
|
|
const auto & join_clause_get_left_filter_condition_nodes = join_clause.getLeftFilterConditionNodes();
|
|
|
|
if (!join_clause_get_left_filter_condition_nodes.empty())
|
|
|
|
{
|
|
|
|
if (join_clause_get_left_filter_condition_nodes.size() != 1)
|
|
|
|
throw Exception(ErrorCodes::LOGICAL_ERROR,
|
|
|
|
"JOIN {} left filter conditions size must be 1. Actual {}",
|
|
|
|
join_node.formatASTForErrorMessage(),
|
|
|
|
join_clause_get_left_filter_condition_nodes.size());
|
|
|
|
|
|
|
|
const auto & join_clause_left_filter_condition_name = join_clause_get_left_filter_condition_nodes[0]->result_name;
|
|
|
|
table_join_clause.analyzer_left_filter_condition_column_name = join_clause_left_filter_condition_name;
|
|
|
|
}
|
|
|
|
|
|
|
|
const auto & join_clause_get_right_filter_condition_nodes = join_clause.getRightFilterConditionNodes();
|
|
|
|
if (!join_clause_get_right_filter_condition_nodes.empty())
|
|
|
|
{
|
|
|
|
if (join_clause_get_right_filter_condition_nodes.size() != 1)
|
|
|
|
throw Exception(ErrorCodes::LOGICAL_ERROR,
|
|
|
|
"JOIN {} right filter conditions size must be 1. Actual {}",
|
|
|
|
join_node.formatASTForErrorMessage(),
|
|
|
|
join_clause_get_right_filter_condition_nodes.size());
|
|
|
|
|
|
|
|
const auto & join_clause_right_filter_condition_name = join_clause_get_right_filter_condition_nodes[0]->result_name;
|
|
|
|
table_join_clause.analyzer_right_filter_condition_column_name = join_clause_right_filter_condition_name;
|
|
|
|
}
|
2022-09-27 15:04:03 +00:00
|
|
|
|
|
|
|
if (is_asof)
|
|
|
|
{
|
|
|
|
if (!join_clause.hasASOF())
|
|
|
|
throw Exception(ErrorCodes::INVALID_JOIN_ON_EXPRESSION,
|
|
|
|
"JOIN {} no inequality in ASOF JOIN ON section.",
|
|
|
|
join_node.formatASTForErrorMessage());
|
|
|
|
|
|
|
|
if (table_join_clause.key_names_left.size() <= 1)
|
|
|
|
throw Exception(ErrorCodes::SYNTAX_ERROR,
|
|
|
|
"JOIN {} ASOF join needs at least one equi-join column",
|
|
|
|
join_node.formatASTForErrorMessage());
|
|
|
|
}
|
|
|
|
|
|
|
|
if (join_clause.hasASOF())
|
|
|
|
{
|
|
|
|
const auto & asof_conditions = join_clause.getASOFConditions();
|
|
|
|
assert(asof_conditions.size() == 1);
|
|
|
|
|
|
|
|
const auto & asof_condition = asof_conditions[0];
|
|
|
|
table_join->setAsofInequality(asof_condition.asof_inequality);
|
|
|
|
|
|
|
|
/// Execution layer of JOIN algorithms expects that ASOF keys are last JOIN keys
|
|
|
|
std::swap(table_join_clause.key_names_left.at(asof_condition.key_index), table_join_clause.key_names_left.back());
|
|
|
|
std::swap(table_join_clause.key_names_right.at(asof_condition.key_index), table_join_clause.key_names_right.back());
|
|
|
|
}
|
2022-09-15 14:09:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (join_node.isUsingJoinExpression())
|
|
|
|
{
|
|
|
|
auto & table_join_clauses = table_join->getClauses();
|
|
|
|
table_join_clauses.emplace_back();
|
|
|
|
auto & table_join_clause = table_join_clauses.back();
|
|
|
|
|
|
|
|
auto & using_list = join_node.getJoinExpression()->as<ListNode &>();
|
|
|
|
|
|
|
|
for (auto & join_using_node : using_list.getNodes())
|
|
|
|
{
|
|
|
|
auto & join_using_column_node = join_using_node->as<ColumnNode &>();
|
2022-10-19 16:49:17 +00:00
|
|
|
auto & using_join_columns_list = join_using_column_node.getExpressionOrThrow()->as<ListNode &>();
|
2022-09-15 14:09:30 +00:00
|
|
|
auto & using_join_left_join_column_node = using_join_columns_list.getNodes().at(0);
|
|
|
|
auto & using_join_right_join_column_node = using_join_columns_list.getNodes().at(1);
|
|
|
|
|
2022-10-19 16:49:17 +00:00
|
|
|
const auto & left_column_identifier = planner_context->getColumnNodeIdentifierOrThrow(using_join_left_join_column_node);
|
|
|
|
const auto & right_column_identifier = planner_context->getColumnNodeIdentifierOrThrow(using_join_right_join_column_node);
|
2022-09-15 14:09:30 +00:00
|
|
|
|
|
|
|
table_join_clause.key_names_left.push_back(left_column_identifier);
|
|
|
|
table_join_clause.key_names_right.push_back(right_column_identifier);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-26 16:26:26 +00:00
|
|
|
const Block & left_header = left_plan.getCurrentDataStream().header;
|
|
|
|
auto left_table_names = left_header.getNames();
|
2022-09-15 14:09:30 +00:00
|
|
|
NameSet left_table_names_set(left_table_names.begin(), left_table_names.end());
|
|
|
|
|
|
|
|
auto columns_from_joined_table = right_plan.getCurrentDataStream().header.getNamesAndTypesList();
|
|
|
|
table_join->setColumnsFromJoinedTable(columns_from_joined_table, left_table_names_set, "");
|
|
|
|
|
|
|
|
for (auto & column_from_joined_table : columns_from_joined_table)
|
|
|
|
{
|
|
|
|
if (planner_context->getGlobalPlannerContext()->hasColumnIdentifier(column_from_joined_table.name))
|
|
|
|
table_join->addJoinedColumn(column_from_joined_table);
|
|
|
|
}
|
|
|
|
|
2022-10-26 16:26:26 +00:00
|
|
|
const Block & right_header = right_plan.getCurrentDataStream().header;
|
|
|
|
auto join_algorithm = chooseJoinAlgorithm(table_join, join_node.getRightTableExpression(), left_header, right_header, planner_context);
|
2022-09-15 14:09:30 +00:00
|
|
|
|
2022-09-28 11:20:24 +00:00
|
|
|
auto result_plan = QueryPlan();
|
2022-09-15 14:09:30 +00:00
|
|
|
|
2022-09-28 11:20:24 +00:00
|
|
|
if (join_algorithm->isFilled())
|
|
|
|
{
|
|
|
|
size_t max_block_size = query_context->getSettingsRef().max_block_size;
|
2022-09-15 14:09:30 +00:00
|
|
|
|
2022-09-28 11:20:24 +00:00
|
|
|
auto filled_join_step = std::make_unique<FilledJoinStep>(
|
|
|
|
left_plan.getCurrentDataStream(),
|
|
|
|
join_algorithm,
|
|
|
|
max_block_size);
|
2022-09-15 14:09:30 +00:00
|
|
|
|
2022-09-28 11:20:24 +00:00
|
|
|
filled_join_step->setStepDescription("Filled JOIN");
|
|
|
|
left_plan.addStep(std::move(filled_join_step));
|
|
|
|
|
|
|
|
result_plan = std::move(left_plan);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2022-10-18 11:35:04 +00:00
|
|
|
auto add_sorting = [&] (QueryPlan & plan, const Names & key_names, JoinTableSide join_table_side)
|
|
|
|
{
|
|
|
|
SortDescription sort_description;
|
|
|
|
sort_description.reserve(key_names.size());
|
|
|
|
for (const auto & key_name : key_names)
|
|
|
|
sort_description.emplace_back(key_name);
|
|
|
|
|
2022-11-09 16:07:38 +00:00
|
|
|
SortingStep::Settings sort_settings(*query_context);
|
2022-11-01 19:51:52 +00:00
|
|
|
|
2022-10-18 11:35:04 +00:00
|
|
|
auto sorting_step = std::make_unique<SortingStep>(
|
|
|
|
plan.getCurrentDataStream(),
|
|
|
|
std::move(sort_description),
|
|
|
|
0 /*limit*/,
|
2022-11-01 19:51:52 +00:00
|
|
|
sort_settings,
|
2022-10-18 11:35:04 +00:00
|
|
|
settings.optimize_sorting_by_input_stream_properties);
|
|
|
|
sorting_step->setStepDescription(fmt::format("Sort {} before JOIN", join_table_side));
|
|
|
|
plan.addStep(std::move(sorting_step));
|
|
|
|
};
|
|
|
|
|
|
|
|
auto crosswise_connection = CreateSetAndFilterOnTheFlyStep::createCrossConnection();
|
|
|
|
auto add_create_set = [&settings, crosswise_connection](QueryPlan & plan, const Names & key_names, JoinTableSide join_table_side)
|
|
|
|
{
|
|
|
|
auto creating_set_step = std::make_unique<CreateSetAndFilterOnTheFlyStep>(
|
|
|
|
plan.getCurrentDataStream(),
|
|
|
|
key_names,
|
|
|
|
settings.max_rows_in_set_to_optimize_join,
|
|
|
|
crosswise_connection,
|
|
|
|
join_table_side);
|
|
|
|
creating_set_step->setStepDescription(fmt::format("Create set and filter {} joined stream", join_table_side));
|
|
|
|
|
|
|
|
auto * step_raw_ptr = creating_set_step.get();
|
|
|
|
plan.addStep(std::move(creating_set_step));
|
|
|
|
return step_raw_ptr;
|
|
|
|
};
|
|
|
|
|
|
|
|
if (join_algorithm->pipelineType() == JoinPipelineType::YShaped)
|
|
|
|
{
|
|
|
|
const auto & join_clause = table_join->getOnlyClause();
|
|
|
|
|
|
|
|
bool kind_allows_filtering = isInner(join_kind) || isLeft(join_kind) || isRight(join_kind);
|
|
|
|
if (settings.max_rows_in_set_to_optimize_join > 0 && kind_allows_filtering)
|
|
|
|
{
|
|
|
|
auto * left_set = add_create_set(left_plan, join_clause.key_names_left, JoinTableSide::Left);
|
|
|
|
auto * right_set = add_create_set(right_plan, join_clause.key_names_right, JoinTableSide::Right);
|
|
|
|
|
|
|
|
if (isInnerOrLeft(join_kind))
|
|
|
|
right_set->setFiltering(left_set->getSet());
|
|
|
|
|
|
|
|
if (isInnerOrRight(join_kind))
|
|
|
|
left_set->setFiltering(right_set->getSet());
|
|
|
|
}
|
|
|
|
|
|
|
|
add_sorting(left_plan, join_clause.key_names_left, JoinTableSide::Left);
|
|
|
|
add_sorting(right_plan, join_clause.key_names_right, JoinTableSide::Right);
|
|
|
|
}
|
|
|
|
|
2022-09-28 11:20:24 +00:00
|
|
|
size_t max_block_size = query_context->getSettingsRef().max_block_size;
|
|
|
|
size_t max_streams = query_context->getSettingsRef().max_threads;
|
|
|
|
|
2022-12-23 11:30:22 +00:00
|
|
|
JoinPipelineType join_pipeline_type = join_algorithm->pipelineType();
|
2022-09-28 11:20:24 +00:00
|
|
|
auto join_step = std::make_unique<JoinStep>(
|
|
|
|
left_plan.getCurrentDataStream(),
|
|
|
|
right_plan.getCurrentDataStream(),
|
|
|
|
std::move(join_algorithm),
|
|
|
|
max_block_size,
|
|
|
|
max_streams,
|
|
|
|
false /*optimize_read_in_order*/);
|
|
|
|
|
2022-12-23 11:30:22 +00:00
|
|
|
join_step->setStepDescription(fmt::format("JOIN {}", join_pipeline_type));
|
2022-09-28 11:20:24 +00:00
|
|
|
|
|
|
|
std::vector<QueryPlanPtr> plans;
|
|
|
|
plans.emplace_back(std::make_unique<QueryPlan>(std::move(left_plan)));
|
|
|
|
plans.emplace_back(std::make_unique<QueryPlan>(std::move(right_plan)));
|
|
|
|
|
|
|
|
result_plan.unitePlans(std::move(join_step), {std::move(plans)});
|
|
|
|
}
|
2022-09-15 14:09:30 +00:00
|
|
|
|
|
|
|
auto drop_unused_columns_after_join_actions_dag = std::make_shared<ActionsDAG>(result_plan.getCurrentDataStream().header.getColumnsWithTypeAndName());
|
|
|
|
ActionsDAG::NodeRawConstPtrs updated_outputs;
|
|
|
|
std::unordered_set<std::string_view> updated_outputs_names;
|
|
|
|
|
|
|
|
for (auto & output : drop_unused_columns_after_join_actions_dag->getOutputs())
|
|
|
|
{
|
2022-12-23 19:33:46 +00:00
|
|
|
const auto & global_planner_context = planner_context->getGlobalPlannerContext();
|
|
|
|
if (updated_outputs_names.contains(output->result_name)
|
|
|
|
|| !global_planner_context->hasColumnIdentifier(output->result_name)
|
|
|
|
|| !outer_scope_columns.contains(output->result_name))
|
|
|
|
{
|
2022-09-15 14:09:30 +00:00
|
|
|
continue;
|
2022-12-23 19:33:46 +00:00
|
|
|
}
|
2022-09-15 14:09:30 +00:00
|
|
|
|
|
|
|
updated_outputs.push_back(output);
|
|
|
|
updated_outputs_names.insert(output->result_name);
|
|
|
|
}
|
|
|
|
|
|
|
|
drop_unused_columns_after_join_actions_dag->getOutputs() = std::move(updated_outputs);
|
|
|
|
|
|
|
|
auto drop_unused_columns_after_join_transform_step = std::make_unique<ExpressionStep>(result_plan.getCurrentDataStream(), std::move(drop_unused_columns_after_join_actions_dag));
|
|
|
|
drop_unused_columns_after_join_transform_step->setStepDescription("DROP unused columns after JOIN");
|
|
|
|
result_plan.addStep(std::move(drop_unused_columns_after_join_transform_step));
|
|
|
|
|
|
|
|
return result_plan;
|
|
|
|
}
|
|
|
|
|
|
|
|
QueryPlan buildQueryPlanForArrayJoinNode(QueryTreeNodePtr table_expression,
|
|
|
|
SelectQueryInfo & select_query_info,
|
|
|
|
const SelectQueryOptions & select_query_options,
|
2022-12-23 19:33:46 +00:00
|
|
|
const ColumnIdentifierSet & outer_scope_columns,
|
2022-09-15 14:09:30 +00:00
|
|
|
PlannerContextPtr & planner_context)
|
|
|
|
{
|
|
|
|
auto & array_join_node = table_expression->as<ArrayJoinNode &>();
|
|
|
|
|
2022-10-19 16:49:17 +00:00
|
|
|
auto plan = buildQueryPlanForJoinTreeNode(array_join_node.getTableExpression(),
|
2022-09-15 14:09:30 +00:00
|
|
|
select_query_info,
|
|
|
|
select_query_options,
|
2022-12-23 19:33:46 +00:00
|
|
|
outer_scope_columns,
|
2022-09-15 14:09:30 +00:00
|
|
|
planner_context);
|
2022-10-19 16:49:17 +00:00
|
|
|
auto plan_output_columns = plan.getCurrentDataStream().header.getColumnsWithTypeAndName();
|
2022-09-15 14:09:30 +00:00
|
|
|
|
2022-10-19 16:49:17 +00:00
|
|
|
ActionsDAGPtr array_join_action_dag = std::make_shared<ActionsDAG>(plan_output_columns);
|
2022-09-15 14:09:30 +00:00
|
|
|
PlannerActionsVisitor actions_visitor(planner_context);
|
|
|
|
|
2022-11-08 13:25:23 +00:00
|
|
|
NameSet array_join_column_names;
|
2022-09-15 14:09:30 +00:00
|
|
|
for (auto & array_join_expression : array_join_node.getJoinExpressions().getNodes())
|
|
|
|
{
|
2022-11-08 13:25:23 +00:00
|
|
|
const auto & array_join_column_identifier = planner_context->getColumnNodeIdentifierOrThrow(array_join_expression);
|
|
|
|
array_join_column_names.insert(array_join_column_identifier);
|
2022-09-15 14:09:30 +00:00
|
|
|
|
2022-11-08 13:25:23 +00:00
|
|
|
auto & array_join_expression_column = array_join_expression->as<ColumnNode &>();
|
2022-09-15 14:09:30 +00:00
|
|
|
auto expression_dag_index_nodes = actions_visitor.visit(array_join_action_dag, array_join_expression_column.getExpressionOrThrow());
|
|
|
|
for (auto & expression_dag_index_node : expression_dag_index_nodes)
|
|
|
|
{
|
2022-11-08 13:25:23 +00:00
|
|
|
const auto * array_join_column_node = &array_join_action_dag->addAlias(*expression_dag_index_node, array_join_column_identifier);
|
2022-09-15 14:09:30 +00:00
|
|
|
array_join_action_dag->getOutputs().push_back(array_join_column_node);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
array_join_action_dag->projectInput();
|
2022-10-19 16:49:17 +00:00
|
|
|
auto array_join_actions = std::make_unique<ExpressionStep>(plan.getCurrentDataStream(), array_join_action_dag);
|
2022-09-15 14:09:30 +00:00
|
|
|
array_join_actions->setStepDescription("ARRAY JOIN actions");
|
2022-10-19 16:49:17 +00:00
|
|
|
plan.addStep(std::move(array_join_actions));
|
2022-09-15 14:09:30 +00:00
|
|
|
|
2022-11-08 13:25:23 +00:00
|
|
|
auto array_join_action = std::make_shared<ArrayJoinAction>(array_join_column_names, array_join_node.isLeft(), planner_context->getQueryContext());
|
2022-10-19 16:49:17 +00:00
|
|
|
auto array_join_step = std::make_unique<ArrayJoinStep>(plan.getCurrentDataStream(), std::move(array_join_action));
|
2022-09-15 14:09:30 +00:00
|
|
|
array_join_step->setStepDescription("ARRAY JOIN");
|
2022-10-19 16:49:17 +00:00
|
|
|
plan.addStep(std::move(array_join_step));
|
2022-09-15 14:09:30 +00:00
|
|
|
|
2022-10-19 16:49:17 +00:00
|
|
|
return plan;
|
2022-09-15 14:09:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
QueryPlan buildQueryPlanForJoinTreeNode(QueryTreeNodePtr join_tree_node,
|
|
|
|
SelectQueryInfo & select_query_info,
|
|
|
|
const SelectQueryOptions & select_query_options,
|
2022-12-23 19:33:46 +00:00
|
|
|
const ColumnIdentifierSet & outer_scope_columns,
|
2022-09-15 14:09:30 +00:00
|
|
|
PlannerContextPtr & planner_context)
|
|
|
|
{
|
|
|
|
auto join_tree_node_type = join_tree_node->getNodeType();
|
|
|
|
|
|
|
|
switch (join_tree_node_type)
|
|
|
|
{
|
|
|
|
case QueryTreeNodeType::TABLE:
|
|
|
|
[[fallthrough]];
|
|
|
|
case QueryTreeNodeType::TABLE_FUNCTION:
|
2022-10-19 16:49:17 +00:00
|
|
|
[[fallthrough]];
|
|
|
|
case QueryTreeNodeType::QUERY:
|
|
|
|
[[fallthrough]];
|
|
|
|
case QueryTreeNodeType::UNION:
|
2022-09-15 14:09:30 +00:00
|
|
|
{
|
|
|
|
return buildQueryPlanForTableExpression(join_tree_node, select_query_info, select_query_options, planner_context);
|
|
|
|
}
|
|
|
|
case QueryTreeNodeType::JOIN:
|
|
|
|
{
|
2022-12-23 19:33:46 +00:00
|
|
|
return buildQueryPlanForJoinNode(join_tree_node, select_query_info, select_query_options, outer_scope_columns, planner_context);
|
2022-09-15 14:09:30 +00:00
|
|
|
}
|
|
|
|
case QueryTreeNodeType::ARRAY_JOIN:
|
|
|
|
{
|
2022-12-23 19:33:46 +00:00
|
|
|
return buildQueryPlanForArrayJoinNode(join_tree_node, select_query_info, select_query_options, outer_scope_columns, planner_context);
|
2022-09-15 14:09:30 +00:00
|
|
|
}
|
|
|
|
default:
|
|
|
|
{
|
|
|
|
throw Exception(ErrorCodes::LOGICAL_ERROR,
|
2022-10-19 16:49:17 +00:00
|
|
|
"Expected table, table function, query, union, join or array join query node. Actual {}",
|
2022-09-15 14:09:30 +00:00
|
|
|
join_tree_node->formatASTForErrorMessage());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|