2019-12-18 03:56:03 +00:00
|
|
|
#include <Interpreters/PredicateRewriteVisitor.h>
|
|
|
|
|
2020-01-04 04:31:45 +00:00
|
|
|
#include <Parsers/ASTFunction.h>
|
2019-12-18 03:56:03 +00:00
|
|
|
#include <Parsers/ASTAsterisk.h>
|
2020-01-06 03:55:07 +00:00
|
|
|
#include <Parsers/ASTSubquery.h>
|
2020-01-04 04:31:45 +00:00
|
|
|
#include <Parsers/ASTIdentifier.h>
|
2019-12-18 03:56:03 +00:00
|
|
|
#include <Parsers/ASTColumnsMatcher.h>
|
|
|
|
#include <Parsers/ASTQualifiedAsterisk.h>
|
2020-01-04 04:31:45 +00:00
|
|
|
#include <Interpreters/IdentifierSemantic.h>
|
2019-12-18 03:56:03 +00:00
|
|
|
#include <Interpreters/getTableExpressions.h>
|
|
|
|
#include <Interpreters/InterpreterSelectQuery.h>
|
|
|
|
#include <Interpreters/ExtractExpressionInfoVisitor.h>
|
2020-01-04 04:31:45 +00:00
|
|
|
#include <AggregateFunctions/AggregateFunctionFactory.h>
|
2019-12-18 03:56:03 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
PredicateRewriteVisitorData::PredicateRewriteVisitorData(
|
2020-07-24 09:00:18 +00:00
|
|
|
const Context & context_, const ASTs & predicates_, Names && column_names_, bool optimize_final_, bool optimize_with_)
|
|
|
|
: context(context_), predicates(predicates_), column_names(column_names_), optimize_final(optimize_final_), optimize_with(optimize_with_)
|
2019-12-18 03:56:03 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void PredicateRewriteVisitorData::visit(ASTSelectWithUnionQuery & union_select_query, ASTPtr &)
|
|
|
|
{
|
|
|
|
auto & internal_select_list = union_select_query.list_of_selects->children;
|
|
|
|
|
2021-01-31 06:22:57 +00:00
|
|
|
for (size_t index = 0; index < internal_select_list.size(); ++index)
|
|
|
|
{
|
2021-02-01 00:44:40 +00:00
|
|
|
if (auto * child_union = internal_select_list[index]->as<ASTSelectWithUnionQuery>())
|
2021-01-31 06:22:57 +00:00
|
|
|
visit(*child_union, internal_select_list[index]);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (index == 0)
|
|
|
|
visitFirstInternalSelect(*internal_select_list[0]->as<ASTSelectQuery>(), internal_select_list[0]);
|
|
|
|
else
|
|
|
|
visitOtherInternalSelect(*internal_select_list[index]->as<ASTSelectQuery>(), internal_select_list[index]);
|
|
|
|
}
|
|
|
|
}
|
2019-12-18 03:56:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void PredicateRewriteVisitorData::visitFirstInternalSelect(ASTSelectQuery & select_query, ASTPtr &)
|
|
|
|
{
|
|
|
|
is_rewrite |= rewriteSubquery(select_query, column_names, column_names);
|
|
|
|
}
|
|
|
|
|
|
|
|
void PredicateRewriteVisitorData::visitOtherInternalSelect(ASTSelectQuery & select_query, ASTPtr &)
|
|
|
|
{
|
|
|
|
/// For non first select, its alias has no more significance, so we can set a temporary alias for them
|
|
|
|
ASTPtr temp_internal_select = select_query.clone();
|
|
|
|
ASTSelectQuery * temp_select_query = temp_internal_select->as<ASTSelectQuery>();
|
|
|
|
|
|
|
|
size_t alias_index = 0;
|
2020-01-04 04:31:45 +00:00
|
|
|
for (auto & ref_select : temp_select_query->refSelect()->children)
|
2019-12-18 03:56:03 +00:00
|
|
|
{
|
2020-01-04 04:31:45 +00:00
|
|
|
if (!ref_select->as<ASTAsterisk>() && !ref_select->as<ASTQualifiedAsterisk>() && !ref_select->as<ASTColumnsMatcher>() &&
|
|
|
|
!ref_select->as<ASTIdentifier>())
|
2019-12-18 03:56:03 +00:00
|
|
|
{
|
|
|
|
if (const auto & alias = ref_select->tryGetAlias(); alias.empty())
|
|
|
|
ref_select->setAlias("--predicate_optimizer_" + toString(alias_index++));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const Names & internal_columns = InterpreterSelectQuery(
|
|
|
|
temp_internal_select, context, SelectQueryOptions().analyze()).getSampleBlock().getNames();
|
|
|
|
|
2020-01-04 04:31:45 +00:00
|
|
|
if (rewriteSubquery(*temp_select_query, column_names, internal_columns))
|
2019-12-18 03:56:03 +00:00
|
|
|
{
|
2020-01-04 04:31:45 +00:00
|
|
|
is_rewrite |= true;
|
2019-12-18 03:56:03 +00:00
|
|
|
select_query.setExpression(ASTSelectQuery::Expression::SELECT, std::move(temp_select_query->refSelect()));
|
2020-01-04 04:31:45 +00:00
|
|
|
select_query.setExpression(ASTSelectQuery::Expression::HAVING, std::move(temp_select_query->refHaving()));
|
2019-12-18 03:56:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void cleanAliasAndCollectIdentifiers(ASTPtr & predicate, std::vector<ASTIdentifier *> & identifiers)
|
|
|
|
{
|
2020-01-07 03:31:03 +00:00
|
|
|
/// Skip WHERE x in (SELECT ...)
|
|
|
|
if (!predicate->as<ASTSubquery>())
|
2020-01-06 03:55:07 +00:00
|
|
|
{
|
2020-01-06 10:56:17 +00:00
|
|
|
for (auto & children : predicate->children)
|
2020-01-06 03:55:07 +00:00
|
|
|
cleanAliasAndCollectIdentifiers(children, identifiers);
|
|
|
|
}
|
|
|
|
|
2019-12-18 03:56:03 +00:00
|
|
|
if (const auto alias = predicate->tryGetAlias(); !alias.empty())
|
2020-07-06 01:50:45 +00:00
|
|
|
predicate->setAlias({});
|
2019-12-18 03:56:03 +00:00
|
|
|
|
|
|
|
if (ASTIdentifier * identifier = predicate->as<ASTIdentifier>())
|
|
|
|
identifiers.emplace_back(identifier);
|
|
|
|
}
|
|
|
|
|
2020-01-04 04:31:45 +00:00
|
|
|
bool PredicateRewriteVisitorData::rewriteSubquery(ASTSelectQuery & subquery, const Names & outer_columns, const Names & inner_columns)
|
2019-12-18 03:56:03 +00:00
|
|
|
{
|
|
|
|
if ((!optimize_final && subquery.final())
|
2020-07-24 09:00:18 +00:00
|
|
|
|| (!optimize_with && subquery.with())
|
|
|
|
|| subquery.withFill()
|
2019-12-18 03:56:03 +00:00
|
|
|
|| subquery.limitBy() || subquery.limitLength()
|
2020-12-24 04:03:33 +00:00
|
|
|
|| hasNonRewritableFunction(subquery.select(), context))
|
2019-12-18 03:56:03 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
for (const auto & predicate : predicates)
|
|
|
|
{
|
|
|
|
std::vector<ASTIdentifier *> identifiers;
|
|
|
|
ASTPtr optimize_predicate = predicate->clone();
|
|
|
|
cleanAliasAndCollectIdentifiers(optimize_predicate, identifiers);
|
|
|
|
|
2020-03-09 00:28:05 +00:00
|
|
|
for (const auto & identifier : identifiers)
|
2019-12-18 03:56:03 +00:00
|
|
|
{
|
2020-03-09 00:28:05 +00:00
|
|
|
const auto & column_name = identifier->shortName();
|
2020-01-04 04:31:45 +00:00
|
|
|
const auto & outer_column_iterator = std::find(outer_columns.begin(), outer_columns.end(), column_name);
|
2019-12-18 03:56:03 +00:00
|
|
|
|
2020-01-07 03:31:03 +00:00
|
|
|
/// For lambda functions, we can't always find them in the list of columns
|
|
|
|
/// For example: SELECT * FROM system.one WHERE arrayMap(x -> x, [dummy]) = [0]
|
2020-01-06 10:33:08 +00:00
|
|
|
if (outer_column_iterator != outer_columns.end())
|
2020-03-09 00:28:05 +00:00
|
|
|
identifier->setShortName(inner_columns[outer_column_iterator - outer_columns.begin()]);
|
2019-12-18 03:56:03 +00:00
|
|
|
}
|
|
|
|
|
2020-01-04 04:31:45 +00:00
|
|
|
/// We only need to push all the predicates to subquery having
|
|
|
|
/// The subquery optimizer will move the appropriate predicates from having to where
|
|
|
|
subquery.setExpression(ASTSelectQuery::Expression::HAVING,
|
|
|
|
subquery.having() ? makeASTFunction("and", optimize_predicate, subquery.having()) : optimize_predicate);
|
2019-12-18 03:56:03 +00:00
|
|
|
}
|
2020-01-04 04:31:45 +00:00
|
|
|
|
2019-12-18 03:56:03 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|