2019-02-01 16:36:40 +00:00
|
|
|
#include <Common/typeid_cast.h>
|
|
|
|
#include <Interpreters/CrossToInnerJoinVisitor.h>
|
|
|
|
#include <Interpreters/DatabaseAndTableWithAlias.h>
|
|
|
|
#include <Interpreters/IdentifierSemantic.h>
|
|
|
|
#include <Parsers/ASTSelectQuery.h>
|
|
|
|
#include <Parsers/ASTTablesInSelectQuery.h>
|
|
|
|
#include <Parsers/ASTIdentifier.h>
|
2019-02-04 18:45:31 +00:00
|
|
|
#include <Parsers/ASTFunction.h>
|
2019-02-01 16:36:40 +00:00
|
|
|
#include <Parsers/ASTExpressionList.h>
|
|
|
|
#include <Parsers/ParserTablesInSelectQuery.h>
|
|
|
|
#include <Parsers/ExpressionListParsers.h>
|
|
|
|
#include <Parsers/parseQuery.h>
|
|
|
|
#include <IO/WriteHelpers.h>
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
namespace ErrorCodes
|
|
|
|
{
|
|
|
|
extern const int LOGICAL_ERROR;
|
|
|
|
}
|
|
|
|
|
2019-02-04 18:45:31 +00:00
|
|
|
/// It checks if where expression could be moved to JOIN ON expression partially or entirely.
|
|
|
|
class CheckExpressionVisitorData
|
2019-02-01 16:36:40 +00:00
|
|
|
{
|
2019-02-04 18:45:31 +00:00
|
|
|
public:
|
|
|
|
using TypeToVisit = const ASTFunction;
|
2019-02-01 16:36:40 +00:00
|
|
|
|
2019-02-04 18:45:31 +00:00
|
|
|
CheckExpressionVisitorData(const std::vector<DatabaseAndTableWithAlias> & tables_)
|
|
|
|
: tables(tables_)
|
|
|
|
, save_where(false)
|
|
|
|
, flat_ands(true)
|
|
|
|
{}
|
|
|
|
|
|
|
|
void visit(const ASTFunction & node, ASTPtr & ast)
|
|
|
|
{
|
|
|
|
if (node.name == "and")
|
|
|
|
{
|
|
|
|
if (!node.arguments || node.arguments->children.empty())
|
|
|
|
throw Exception("Logical error: function requires argiment", ErrorCodes::LOGICAL_ERROR);
|
|
|
|
|
|
|
|
for (auto & child : node.arguments->children)
|
|
|
|
{
|
2019-03-11 13:22:51 +00:00
|
|
|
if (const auto * func = child->as<ASTFunction>())
|
2019-02-04 18:45:31 +00:00
|
|
|
{
|
|
|
|
if (func->name == "and")
|
|
|
|
flat_ands = false;
|
|
|
|
visit(*func, child);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
save_where = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (node.name == "equals")
|
|
|
|
{
|
|
|
|
if (checkEquals(node))
|
|
|
|
asts_to_join_on.push_back(ast);
|
|
|
|
else
|
|
|
|
save_where = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
save_where = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool matchAny() const { return !asts_to_join_on.empty(); }
|
|
|
|
bool matchAll() const { return matchAny() && !save_where; }
|
|
|
|
bool canReuseWhere() const { return matchAll() && flat_ands; }
|
|
|
|
|
|
|
|
ASTPtr makeOnExpression()
|
|
|
|
{
|
|
|
|
if (asts_to_join_on.size() == 1)
|
|
|
|
return asts_to_join_on[0]->clone();
|
|
|
|
|
|
|
|
std::vector<ASTPtr> arguments;
|
|
|
|
arguments.reserve(asts_to_join_on.size());
|
|
|
|
for (auto & ast : asts_to_join_on)
|
|
|
|
arguments.emplace_back(ast->clone());
|
|
|
|
|
|
|
|
return makeASTFunction("and", std::move(arguments));
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2019-02-01 16:36:40 +00:00
|
|
|
const std::vector<DatabaseAndTableWithAlias> & tables;
|
2019-02-04 18:45:31 +00:00
|
|
|
std::vector<ASTPtr> asts_to_join_on;
|
|
|
|
bool save_where;
|
|
|
|
bool flat_ands;
|
|
|
|
|
|
|
|
bool checkEquals(const ASTFunction & node)
|
|
|
|
{
|
|
|
|
if (!node.arguments)
|
|
|
|
throw Exception("Logical error: function requires argiment", ErrorCodes::LOGICAL_ERROR);
|
|
|
|
if (node.arguments->children.size() != 2)
|
|
|
|
return false;
|
2019-02-01 16:36:40 +00:00
|
|
|
|
2019-03-11 13:22:51 +00:00
|
|
|
const auto * left = node.arguments->children[0]->as<ASTIdentifier>();
|
|
|
|
const auto * right = node.arguments->children[1]->as<ASTIdentifier>();
|
2019-02-04 18:45:31 +00:00
|
|
|
if (!left || !right)
|
|
|
|
return false;
|
2019-02-01 16:36:40 +00:00
|
|
|
|
2019-02-04 18:45:31 +00:00
|
|
|
return checkIdentifiers(*left, *right);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Check if the identifiers are from different joined tables. If it's a self joint, tables should have aliases.
|
|
|
|
/// select * from t1 a cross join t2 b where a.x = b.x
|
|
|
|
bool checkIdentifiers(const ASTIdentifier & left, const ASTIdentifier & right)
|
2019-02-01 16:36:40 +00:00
|
|
|
{
|
2019-02-04 18:45:31 +00:00
|
|
|
/// {best_match, berst_table_pos}
|
|
|
|
std::pair<size_t, size_t> left_best{0, 0};
|
|
|
|
std::pair<size_t, size_t> right_best{0, 0};
|
|
|
|
|
|
|
|
for (size_t i = 0; i < tables.size(); ++i)
|
|
|
|
{
|
|
|
|
size_t match = IdentifierSemantic::canReferColumnToTable(left, tables[i]);
|
|
|
|
if (match > left_best.first)
|
|
|
|
{
|
|
|
|
left_best.first = match;
|
|
|
|
left_best.second = i;
|
|
|
|
}
|
|
|
|
|
|
|
|
match = IdentifierSemantic::canReferColumnToTable(right, tables[i]);
|
|
|
|
if (match > right_best.first)
|
|
|
|
{
|
|
|
|
right_best.first = match;
|
|
|
|
right_best.second = i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return left_best.first && right_best.first && (left_best.second != right_best.second);
|
2019-02-01 16:36:40 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static bool extractTableName(const ASTTableExpression & expr, std::vector<DatabaseAndTableWithAlias> & names)
|
|
|
|
{
|
|
|
|
/// Subselects are not supported.
|
|
|
|
if (!expr.database_and_table_name)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
names.emplace_back(DatabaseAndTableWithAlias(expr));
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static ASTPtr getCrossJoin(ASTSelectQuery & select, std::vector<DatabaseAndTableWithAlias> & table_names)
|
|
|
|
{
|
|
|
|
if (!select.tables)
|
|
|
|
return {};
|
|
|
|
|
2019-03-11 13:22:51 +00:00
|
|
|
const auto * tables = select.tables->as<ASTTablesInSelectQuery>();
|
2019-02-01 16:36:40 +00:00
|
|
|
if (!tables)
|
|
|
|
return {};
|
|
|
|
|
|
|
|
size_t num_tables = tables->children.size();
|
|
|
|
if (num_tables != 2)
|
|
|
|
return {};
|
|
|
|
|
2019-03-11 13:22:51 +00:00
|
|
|
const auto * left = tables->children[0]->as<ASTTablesInSelectQueryElement>();
|
|
|
|
const auto * right = tables->children[1]->as<ASTTablesInSelectQueryElement>();
|
2019-02-01 16:36:40 +00:00
|
|
|
if (!left || !right || !right->table_join)
|
|
|
|
return {};
|
|
|
|
|
2019-03-11 13:22:51 +00:00
|
|
|
if (const auto * join = right->table_join->as<ASTTableJoin>())
|
2019-02-01 16:36:40 +00:00
|
|
|
{
|
2019-02-01 17:22:28 +00:00
|
|
|
if (join->kind == ASTTableJoin::Kind::Cross ||
|
|
|
|
join->kind == ASTTableJoin::Kind::Comma)
|
2019-02-01 16:36:40 +00:00
|
|
|
{
|
|
|
|
if (!join->children.empty())
|
|
|
|
throw Exception("Logical error: CROSS JOIN has expressions", ErrorCodes::LOGICAL_ERROR);
|
|
|
|
|
2019-03-11 13:22:51 +00:00
|
|
|
const auto * left_expr = left->table_expression->as<ASTTableExpression>();
|
|
|
|
const auto * right_expr = right->table_expression->as<ASTTableExpression>();
|
2019-02-01 16:36:40 +00:00
|
|
|
|
|
|
|
table_names.reserve(2);
|
2019-03-08 09:45:34 +00:00
|
|
|
if (extractTableName(*left_expr, table_names) &&
|
|
|
|
extractTableName(*right_expr, table_names))
|
2019-02-01 16:36:40 +00:00
|
|
|
return right->table_join;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-02-22 13:33:56 +00:00
|
|
|
void CrossToInnerJoinMatcher::visit(ASTPtr & ast, Data & data)
|
2019-02-01 16:36:40 +00:00
|
|
|
{
|
2019-03-11 13:22:51 +00:00
|
|
|
if (auto * t = ast->as<ASTSelectQuery>())
|
2019-02-01 16:36:40 +00:00
|
|
|
visit(*t, ast, data);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CrossToInnerJoinMatcher::visit(ASTSelectQuery & select, ASTPtr & ast, Data & data)
|
|
|
|
{
|
2019-02-04 18:45:31 +00:00
|
|
|
using CheckExpressionMatcher = OneTypeMatcher<CheckExpressionVisitorData, false>;
|
|
|
|
using CheckExpressionVisitor = InDepthNodeVisitor<CheckExpressionMatcher, true>;
|
2019-02-01 16:36:40 +00:00
|
|
|
|
2019-03-05 15:16:59 +00:00
|
|
|
if (!select.where_expression)
|
|
|
|
return;
|
|
|
|
|
2019-02-01 16:36:40 +00:00
|
|
|
std::vector<DatabaseAndTableWithAlias> table_names;
|
|
|
|
ASTPtr ast_join = getCrossJoin(select, table_names);
|
|
|
|
if (!ast_join)
|
|
|
|
return;
|
|
|
|
|
2019-02-04 18:45:31 +00:00
|
|
|
CheckExpressionVisitor::Data visitor_data{table_names};
|
|
|
|
CheckExpressionVisitor(visitor_data).visit(select.where_expression);
|
2019-02-01 16:36:40 +00:00
|
|
|
|
2019-02-04 18:45:31 +00:00
|
|
|
if (visitor_data.matchAny())
|
|
|
|
{
|
2019-03-11 13:22:51 +00:00
|
|
|
auto * join = ast_join->as<ASTTableJoin>();
|
2019-03-11 12:49:39 +00:00
|
|
|
join->kind = ASTTableJoin::Kind::Inner;
|
|
|
|
join->strictness = ASTTableJoin::Strictness::All;
|
2019-02-04 18:45:31 +00:00
|
|
|
|
|
|
|
if (visitor_data.canReuseWhere())
|
2019-03-11 12:49:39 +00:00
|
|
|
join->on_expression.swap(select.where_expression);
|
2019-02-04 18:45:31 +00:00
|
|
|
else
|
2019-03-11 12:49:39 +00:00
|
|
|
join->on_expression = visitor_data.makeOnExpression();
|
2019-02-01 16:36:40 +00:00
|
|
|
|
2019-02-04 18:45:31 +00:00
|
|
|
if (visitor_data.matchAll())
|
|
|
|
select.where_expression.reset();
|
2019-02-01 16:36:40 +00:00
|
|
|
|
2019-03-11 12:49:39 +00:00
|
|
|
join->children.push_back(join->on_expression);
|
2019-02-01 16:36:40 +00:00
|
|
|
|
2019-03-05 15:16:59 +00:00
|
|
|
ast = ast->clone(); /// rewrite AST in right manner
|
|
|
|
data.done = true;
|
|
|
|
}
|
2019-02-01 16:36:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|