2018-12-11 17:43:12 +00:00
|
|
|
#include <Interpreters/evaluateConstantExpression.h>
|
|
|
|
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <Columns/ColumnConst.h>
|
|
|
|
#include <Columns/ColumnsNumber.h>
|
2018-12-11 17:43:12 +00:00
|
|
|
#include <Core/Block.h>
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <DataTypes/DataTypesNumber.h>
|
2022-03-16 11:21:18 +00:00
|
|
|
#include <DataTypes/FieldToDataType.h>
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <Interpreters/Context.h>
|
2018-12-11 17:43:12 +00:00
|
|
|
#include <Interpreters/convertFieldToType.h>
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <Interpreters/ExpressionActions.h>
|
2018-12-11 17:43:12 +00:00
|
|
|
#include <Interpreters/ExpressionAnalyzer.h>
|
2020-07-22 17:13:05 +00:00
|
|
|
#include <Interpreters/TreeRewriter.h>
|
2018-12-11 17:43:12 +00:00
|
|
|
#include <Parsers/ASTFunction.h>
|
|
|
|
#include <Parsers/ASTIdentifier.h>
|
|
|
|
#include <Parsers/ASTLiteral.h>
|
2022-04-28 20:09:29 +00:00
|
|
|
#include <Parsers/ASTSubquery.h>
|
2018-12-11 17:43:12 +00:00
|
|
|
#include <Parsers/ExpressionElementParsers.h>
|
2018-07-24 14:05:37 +00:00
|
|
|
#include <TableFunctions/TableFunctionFactory.h>
|
2018-12-11 17:43:12 +00:00
|
|
|
#include <Common/typeid_cast.h>
|
2021-02-17 15:36:37 +00:00
|
|
|
#include <Interpreters/FunctionNameNormalizer.h>
|
2019-10-07 10:24:35 +00:00
|
|
|
#include <Interpreters/ReplaceQueryParameterVisitor.h>
|
2020-02-19 18:58:29 +00:00
|
|
|
#include <Poco/Util/AbstractConfiguration.h>
|
2021-08-09 21:48:44 +00:00
|
|
|
#include <unordered_map>
|
2016-02-13 06:37:19 +00:00
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
namespace ErrorCodes
|
|
|
|
{
|
|
|
|
extern const int LOGICAL_ERROR;
|
|
|
|
extern const int BAD_ARGUMENTS;
|
|
|
|
}
|
|
|
|
|
2022-06-01 15:32:33 +00:00
|
|
|
static std::pair<Field, std::shared_ptr<const IDataType>> getFieldAndDataTypeFromLiteral(ASTLiteral * literal)
|
|
|
|
{
|
|
|
|
auto type = applyVisitor(FieldToDataType(), literal->value);
|
|
|
|
/// In case of Array field nested fields can have different types.
|
|
|
|
/// Example: Array [1, 2.3] will have 2 fields with types UInt64 and Float64
|
|
|
|
/// when result type is Array(Float64).
|
|
|
|
/// So, we need to convert this field to the result type.
|
|
|
|
Field res = convertFieldToType(literal->value, *type);
|
|
|
|
return {res, type};
|
|
|
|
}
|
2016-08-25 17:23:29 +00:00
|
|
|
|
2022-07-06 12:59:25 +00:00
|
|
|
std::pair<Field, std::shared_ptr<const IDataType>> evaluateConstantExpression(const ASTPtr & node, const ContextPtr & context)
|
2016-02-13 06:37:19 +00:00
|
|
|
{
|
2022-03-16 16:16:08 +00:00
|
|
|
if (ASTLiteral * literal = node->as<ASTLiteral>())
|
2022-06-01 15:32:33 +00:00
|
|
|
return getFieldAndDataTypeFromLiteral(literal);
|
2022-03-16 11:21:18 +00:00
|
|
|
|
2018-11-08 15:43:14 +00:00
|
|
|
NamesAndTypesList source_columns = {{ "_dummy", std::make_shared<DataTypeUInt8>() }};
|
2022-04-28 20:09:29 +00:00
|
|
|
|
2018-11-08 17:28:52 +00:00
|
|
|
auto ast = node->clone();
|
2022-04-28 20:09:29 +00:00
|
|
|
|
2022-05-02 12:27:00 +00:00
|
|
|
if (ast->as<ASTSubquery>() != nullptr)
|
2022-04-28 20:09:29 +00:00
|
|
|
{
|
|
|
|
/** For subqueries getColumnName if there are no alias will return __subquery_ + 'hash'.
|
|
|
|
* If there is alias getColumnName for subquery will return alias.
|
|
|
|
* In result block name of subquery after QueryAliasesVisitor pass will be _subquery1.
|
|
|
|
* We specify alias for subquery, because we need to get column from result block.
|
|
|
|
*/
|
|
|
|
ast->setAlias("constant_expression");
|
|
|
|
}
|
|
|
|
|
2021-04-10 23:33:54 +00:00
|
|
|
ReplaceQueryParameterVisitor param_visitor(context->getQueryParameters());
|
2019-10-07 10:24:35 +00:00
|
|
|
param_visitor.visit(ast);
|
2021-02-18 03:27:24 +00:00
|
|
|
|
2022-05-17 08:22:31 +00:00
|
|
|
/// Notice: function name normalization is disabled when it's a secondary query, because queries are either
|
|
|
|
/// already normalized on initiator node, or not normalized and should remain unnormalized for
|
|
|
|
/// compatibility.
|
|
|
|
if (context->getClientInfo().query_kind != ClientInfo::QueryKind::SECONDARY_QUERY && context->getSettingsRef().normalize_function_names)
|
2021-02-18 03:27:24 +00:00
|
|
|
FunctionNameNormalizer().visit(ast.get());
|
|
|
|
|
2023-03-20 12:42:09 +00:00
|
|
|
String result_name = ast->getColumnName();
|
2020-07-22 17:13:05 +00:00
|
|
|
auto syntax_result = TreeRewriter(context).analyze(ast, source_columns);
|
2022-04-28 20:09:29 +00:00
|
|
|
|
|
|
|
/// AST potentially could be transformed to literal during TreeRewriter analyze.
|
|
|
|
/// For example if we have SQL user defined function that return literal AS subquery.
|
|
|
|
if (ASTLiteral * literal = ast->as<ASTLiteral>())
|
2022-06-01 15:32:33 +00:00
|
|
|
return getFieldAndDataTypeFromLiteral(literal);
|
2022-04-28 20:09:29 +00:00
|
|
|
|
2023-02-03 00:41:20 +00:00
|
|
|
auto actions = ExpressionAnalyzer(ast, syntax_result, context).getConstActionsDAG();
|
2016-02-13 06:37:19 +00:00
|
|
|
|
2023-02-03 00:41:20 +00:00
|
|
|
ColumnPtr result_column;
|
|
|
|
DataTypePtr result_type;
|
|
|
|
for (const auto & action_node : actions->getOutputs())
|
|
|
|
{
|
|
|
|
if ((action_node->result_name == result_name) && action_node->column)
|
|
|
|
{
|
|
|
|
result_column = action_node->column;
|
|
|
|
result_type = action_node->result_type;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2016-02-13 06:37:19 +00:00
|
|
|
|
2023-02-03 00:41:20 +00:00
|
|
|
if (!result_column)
|
2021-07-02 00:53:08 +00:00
|
|
|
throw Exception(ErrorCodes::BAD_ARGUMENTS,
|
2023-01-23 21:13:58 +00:00
|
|
|
"Element of set in IN, VALUES or LIMIT or aggregate function parameter "
|
2023-02-03 00:41:20 +00:00
|
|
|
"is not a constant expression (result column not found): {}", result_name);
|
2016-02-13 06:37:19 +00:00
|
|
|
|
2023-02-03 00:41:20 +00:00
|
|
|
if (result_column->empty())
|
|
|
|
throw Exception(ErrorCodes::LOGICAL_ERROR,
|
|
|
|
"Logical error: empty result column after evaluation "
|
|
|
|
"of constant expression for IN, VALUES or LIMIT or aggregate function parameter");
|
2016-02-13 06:37:19 +00:00
|
|
|
|
2019-09-28 22:12:29 +00:00
|
|
|
/// Expressions like rand() or now() are not constant
|
2023-02-03 00:41:20 +00:00
|
|
|
if (!isColumnConst(*result_column))
|
2021-07-02 00:53:08 +00:00
|
|
|
throw Exception(ErrorCodes::BAD_ARGUMENTS,
|
2023-01-23 21:13:58 +00:00
|
|
|
"Element of set in IN, VALUES or LIMIT or aggregate function parameter "
|
2023-02-03 00:41:20 +00:00
|
|
|
"is not a constant expression (result column is not const): {}", result_name);
|
2016-02-13 06:37:19 +00:00
|
|
|
|
2023-02-03 00:41:20 +00:00
|
|
|
return std::make_pair((*result_column)[0], result_type);
|
2016-02-13 06:37:19 +00:00
|
|
|
}
|
|
|
|
|
2016-08-25 17:23:29 +00:00
|
|
|
|
2022-07-06 12:59:25 +00:00
|
|
|
ASTPtr evaluateConstantExpressionAsLiteral(const ASTPtr & node, const ContextPtr & context)
|
2018-07-25 12:31:47 +00:00
|
|
|
{
|
2019-10-09 19:58:50 +00:00
|
|
|
/// If it's already a literal.
|
2019-03-11 13:22:51 +00:00
|
|
|
if (node->as<ASTLiteral>())
|
2016-08-25 17:23:29 +00:00
|
|
|
return node;
|
2018-02-26 03:37:08 +00:00
|
|
|
return std::make_shared<ASTLiteral>(evaluateConstantExpression(node, context).first);
|
2016-08-25 17:23:29 +00:00
|
|
|
}
|
|
|
|
|
2022-07-06 12:59:25 +00:00
|
|
|
ASTPtr evaluateConstantExpressionOrIdentifierAsLiteral(const ASTPtr & node, const ContextPtr & context)
|
2016-08-25 17:23:29 +00:00
|
|
|
{
|
2019-03-11 13:22:51 +00:00
|
|
|
if (const auto * id = node->as<ASTIdentifier>())
|
2020-10-24 18:46:10 +00:00
|
|
|
return std::make_shared<ASTLiteral>(id->name());
|
2016-08-25 17:23:29 +00:00
|
|
|
|
|
|
|
return evaluateConstantExpressionAsLiteral(node, context);
|
|
|
|
}
|
|
|
|
|
2022-07-06 12:59:25 +00:00
|
|
|
ASTPtr evaluateConstantExpressionForDatabaseName(const ASTPtr & node, const ContextPtr & context)
|
2020-02-19 18:58:29 +00:00
|
|
|
{
|
|
|
|
ASTPtr res = evaluateConstantExpressionOrIdentifierAsLiteral(node, context);
|
|
|
|
auto & literal = res->as<ASTLiteral &>();
|
|
|
|
if (literal.value.safeGet<String>().empty())
|
|
|
|
{
|
2021-04-10 23:33:54 +00:00
|
|
|
String current_database = context->getCurrentDatabase();
|
2020-02-19 18:58:29 +00:00
|
|
|
if (current_database.empty())
|
|
|
|
{
|
|
|
|
/// Table was created on older version of ClickHouse and CREATE contains not folded expression.
|
|
|
|
/// Current database is not set yet during server startup, so we cannot evaluate it correctly.
|
2021-04-10 23:33:54 +00:00
|
|
|
literal.value = context->getConfigRef().getString("default_database", "default");
|
2020-02-19 18:58:29 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
literal.value = current_database;
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2021-07-24 01:52:18 +00:00
|
|
|
|
2018-12-11 17:43:12 +00:00
|
|
|
namespace
|
|
|
|
{
|
|
|
|
using Conjunction = ColumnsWithTypeAndName;
|
|
|
|
using Disjunction = std::vector<Conjunction>;
|
|
|
|
|
2020-03-24 12:55:35 +00:00
|
|
|
Disjunction analyzeEquals(const ASTIdentifier * identifier, const Field & value, const ExpressionActionsPtr & expr)
|
2018-12-11 17:43:12 +00:00
|
|
|
{
|
2020-03-24 12:55:35 +00:00
|
|
|
if (!identifier || value.isNull())
|
2018-12-11 17:43:12 +00:00
|
|
|
{
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const auto & name_and_type : expr->getRequiredColumnsWithTypes())
|
|
|
|
{
|
|
|
|
const auto & name = name_and_type.name;
|
|
|
|
const auto & type = name_and_type.type;
|
|
|
|
|
2020-10-24 18:46:10 +00:00
|
|
|
if (name == identifier->name())
|
2018-12-11 17:43:12 +00:00
|
|
|
{
|
|
|
|
ColumnWithTypeAndName column;
|
2020-03-24 15:56:46 +00:00
|
|
|
Field converted = convertFieldToType(value, *type);
|
|
|
|
if (converted.isNull())
|
2020-03-22 11:11:57 +00:00
|
|
|
return {};
|
2020-03-24 15:56:46 +00:00
|
|
|
column.column = type->createColumnConst(1, converted);
|
2018-12-11 17:43:12 +00:00
|
|
|
column.name = name;
|
|
|
|
column.type = type;
|
|
|
|
return {{std::move(column)}};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2020-03-24 12:55:35 +00:00
|
|
|
Disjunction analyzeEquals(const ASTIdentifier * identifier, const ASTLiteral * literal, const ExpressionActionsPtr & expr)
|
|
|
|
{
|
|
|
|
if (!identifier || !literal)
|
|
|
|
{
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
return analyzeEquals(identifier, literal->value, expr);
|
|
|
|
}
|
|
|
|
|
2018-12-11 17:43:12 +00:00
|
|
|
Disjunction andDNF(const Disjunction & left, const Disjunction & right)
|
|
|
|
{
|
|
|
|
if (left.empty())
|
|
|
|
{
|
|
|
|
return right;
|
|
|
|
}
|
|
|
|
|
|
|
|
Disjunction result;
|
|
|
|
|
|
|
|
for (const auto & conjunct1 : left)
|
|
|
|
{
|
|
|
|
for (const auto & conjunct2 : right)
|
|
|
|
{
|
|
|
|
Conjunction new_conjunct{conjunct1};
|
|
|
|
new_conjunct.insert(new_conjunct.end(), conjunct2.begin(), conjunct2.end());
|
|
|
|
result.emplace_back(new_conjunct);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2021-03-08 07:05:56 +00:00
|
|
|
Disjunction analyzeFunction(const ASTFunction * fn, const ExpressionActionsPtr & expr, size_t & limit)
|
2018-12-11 17:43:12 +00:00
|
|
|
{
|
2021-03-08 07:05:56 +00:00
|
|
|
if (!fn || !limit)
|
2018-12-11 17:43:12 +00:00
|
|
|
{
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: enumerate all possible function names!
|
|
|
|
|
|
|
|
if (fn->name == "equals")
|
|
|
|
{
|
|
|
|
const auto * left = fn->arguments->children.front().get();
|
|
|
|
const auto * right = fn->arguments->children.back().get();
|
2019-03-11 13:22:51 +00:00
|
|
|
const auto * identifier = left->as<ASTIdentifier>() ? left->as<ASTIdentifier>() : right->as<ASTIdentifier>();
|
|
|
|
const auto * literal = left->as<ASTLiteral>() ? left->as<ASTLiteral>() : right->as<ASTLiteral>();
|
2018-12-11 17:43:12 +00:00
|
|
|
|
2021-03-08 07:05:56 +00:00
|
|
|
--limit;
|
2018-12-11 17:43:12 +00:00
|
|
|
return analyzeEquals(identifier, literal, expr);
|
|
|
|
}
|
|
|
|
else if (fn->name == "in")
|
|
|
|
{
|
|
|
|
const auto * left = fn->arguments->children.front().get();
|
|
|
|
const auto * right = fn->arguments->children.back().get();
|
2019-03-11 13:22:51 +00:00
|
|
|
const auto * identifier = left->as<ASTIdentifier>();
|
2018-12-11 17:43:12 +00:00
|
|
|
|
2020-03-24 12:55:35 +00:00
|
|
|
Disjunction result;
|
2018-12-11 17:43:12 +00:00
|
|
|
|
2021-07-23 00:34:49 +00:00
|
|
|
auto add_dnf = [&](const auto & dnf)
|
2021-03-08 07:05:56 +00:00
|
|
|
{
|
|
|
|
if (dnf.size() > limit)
|
|
|
|
{
|
|
|
|
result.clear();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
result.insert(result.end(), dnf.begin(), dnf.end());
|
|
|
|
limit -= dnf.size();
|
|
|
|
return true;
|
|
|
|
};
|
|
|
|
|
2020-03-24 12:55:35 +00:00
|
|
|
if (const auto * tuple_func = right->as<ASTFunction>(); tuple_func && tuple_func->name == "tuple")
|
2018-12-11 17:43:12 +00:00
|
|
|
{
|
2020-03-24 12:55:35 +00:00
|
|
|
const auto * tuple_elements = tuple_func->children.front()->as<ASTExpressionList>();
|
|
|
|
for (const auto & child : tuple_elements->children)
|
|
|
|
{
|
|
|
|
const auto * literal = child->as<ASTLiteral>();
|
|
|
|
const auto dnf = analyzeEquals(identifier, literal, expr);
|
2018-12-11 17:43:12 +00:00
|
|
|
|
2020-03-24 12:55:35 +00:00
|
|
|
if (dnf.empty())
|
|
|
|
{
|
|
|
|
return {};
|
|
|
|
}
|
2018-12-11 17:43:12 +00:00
|
|
|
|
2021-03-08 07:05:56 +00:00
|
|
|
if (!add_dnf(dnf))
|
|
|
|
{
|
|
|
|
return {};
|
|
|
|
}
|
2020-03-24 12:55:35 +00:00
|
|
|
}
|
|
|
|
}
|
2021-06-04 13:16:15 +00:00
|
|
|
else if (const auto * tuple_literal = right->as<ASTLiteral>(); tuple_literal)
|
2018-12-11 17:43:12 +00:00
|
|
|
{
|
2021-06-04 13:16:15 +00:00
|
|
|
if (tuple_literal->value.getType() == Field::Types::Tuple)
|
2018-12-11 17:43:12 +00:00
|
|
|
{
|
2021-06-04 13:16:15 +00:00
|
|
|
const auto & tuple = tuple_literal->value.get<const Tuple &>();
|
|
|
|
for (const auto & child : tuple)
|
2020-03-24 12:55:35 +00:00
|
|
|
{
|
2021-06-04 13:16:15 +00:00
|
|
|
const auto dnf = analyzeEquals(identifier, child, expr);
|
2020-03-24 12:55:35 +00:00
|
|
|
|
2021-06-04 13:16:15 +00:00
|
|
|
if (dnf.empty())
|
|
|
|
{
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!add_dnf(dnf))
|
|
|
|
{
|
|
|
|
return {};
|
|
|
|
}
|
2021-03-08 07:05:56 +00:00
|
|
|
}
|
2020-03-24 12:55:35 +00:00
|
|
|
}
|
2021-06-04 13:16:15 +00:00
|
|
|
else
|
|
|
|
return analyzeEquals(identifier, tuple_literal, expr);
|
2020-03-24 12:55:35 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return {};
|
2018-12-11 17:43:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
else if (fn->name == "or")
|
|
|
|
{
|
2019-03-11 13:22:51 +00:00
|
|
|
const auto * args = fn->children.front()->as<ASTExpressionList>();
|
2018-12-11 17:43:12 +00:00
|
|
|
|
|
|
|
if (!args)
|
|
|
|
{
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
Disjunction result;
|
|
|
|
|
|
|
|
for (const auto & arg : args->children)
|
|
|
|
{
|
2021-03-08 07:05:56 +00:00
|
|
|
const auto dnf = analyzeFunction(arg->as<ASTFunction>(), expr, limit);
|
2018-12-11 17:43:12 +00:00
|
|
|
|
|
|
|
if (dnf.empty())
|
|
|
|
{
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2021-03-08 07:05:56 +00:00
|
|
|
/// limit accounted in analyzeFunction()
|
2018-12-11 17:43:12 +00:00
|
|
|
result.insert(result.end(), dnf.begin(), dnf.end());
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
else if (fn->name == "and")
|
|
|
|
{
|
2019-03-11 13:22:51 +00:00
|
|
|
const auto * args = fn->children.front()->as<ASTExpressionList>();
|
2018-12-11 17:43:12 +00:00
|
|
|
|
|
|
|
if (!args)
|
|
|
|
{
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
Disjunction result;
|
|
|
|
|
|
|
|
for (const auto & arg : args->children)
|
|
|
|
{
|
2021-03-08 07:05:56 +00:00
|
|
|
const auto dnf = analyzeFunction(arg->as<ASTFunction>(), expr, limit);
|
2018-12-11 17:43:12 +00:00
|
|
|
|
|
|
|
if (dnf.empty())
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2021-03-08 07:05:56 +00:00
|
|
|
/// limit accounted in analyzeFunction()
|
2018-12-11 17:43:12 +00:00
|
|
|
result = andDNF(result, dnf);
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-08 07:05:56 +00:00
|
|
|
std::optional<Blocks> evaluateExpressionOverConstantCondition(const ASTPtr & node, const ExpressionActionsPtr & target_expr, size_t & limit)
|
2018-12-11 17:43:12 +00:00
|
|
|
{
|
|
|
|
Blocks result;
|
|
|
|
|
2019-03-11 13:22:51 +00:00
|
|
|
if (const auto * fn = node->as<ASTFunction>())
|
2018-12-11 17:43:12 +00:00
|
|
|
{
|
2021-08-09 21:48:44 +00:00
|
|
|
std::unordered_map<std::string, bool> always_false_map;
|
2021-03-08 07:05:56 +00:00
|
|
|
const auto dnf = analyzeFunction(fn, target_expr, limit);
|
2018-12-11 17:43:12 +00:00
|
|
|
|
2021-03-08 07:05:56 +00:00
|
|
|
if (dnf.empty() || !limit)
|
2018-12-11 17:43:12 +00:00
|
|
|
{
|
2018-12-19 12:38:13 +00:00
|
|
|
return {};
|
2018-12-11 17:43:12 +00:00
|
|
|
}
|
|
|
|
|
2020-03-23 02:12:31 +00:00
|
|
|
auto has_required_columns = [&target_expr](const Block & block) -> bool
|
2018-12-11 17:43:12 +00:00
|
|
|
{
|
|
|
|
for (const auto & name : target_expr->getRequiredColumns())
|
|
|
|
{
|
2020-03-23 02:12:31 +00:00
|
|
|
bool has_column = false;
|
2018-12-11 17:43:12 +00:00
|
|
|
for (const auto & column_name : block.getNames())
|
|
|
|
{
|
|
|
|
if (column_name == name)
|
|
|
|
{
|
2020-03-23 02:12:31 +00:00
|
|
|
has_column = true;
|
2018-12-11 17:43:12 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-23 02:12:31 +00:00
|
|
|
if (!has_column)
|
2018-12-11 17:43:12 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
};
|
|
|
|
|
|
|
|
for (const auto & conjunct : dnf)
|
|
|
|
{
|
2021-07-24 01:52:18 +00:00
|
|
|
Block block;
|
|
|
|
|
|
|
|
for (const auto & elem : conjunct)
|
|
|
|
{
|
|
|
|
if (!block.has(elem.name))
|
|
|
|
{
|
|
|
|
block.insert(elem);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/// Conjunction of condition on column equality to distinct values can never be satisfied.
|
|
|
|
|
|
|
|
const ColumnWithTypeAndName & prev = block.getByName(elem.name);
|
|
|
|
|
|
|
|
if (isColumnConst(*prev.column) && isColumnConst(*elem.column))
|
|
|
|
{
|
|
|
|
Field prev_value = assert_cast<const ColumnConst &>(*prev.column).getField();
|
|
|
|
Field curr_value = assert_cast<const ColumnConst &>(*elem.column).getField();
|
|
|
|
|
2022-04-18 10:18:43 +00:00
|
|
|
if (!always_false_map.contains(elem.name))
|
2021-08-09 21:48:44 +00:00
|
|
|
{
|
|
|
|
always_false_map[elem.name] = prev_value != curr_value;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
auto & always_false = always_false_map[elem.name];
|
|
|
|
/// If at least one of conjunct is not always false, we should preserve this.
|
|
|
|
if (always_false)
|
|
|
|
{
|
|
|
|
always_false = prev_value != curr_value;
|
|
|
|
}
|
|
|
|
}
|
2021-07-24 01:52:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-12-11 17:43:12 +00:00
|
|
|
|
|
|
|
// Block should contain all required columns from `target_expr`
|
2020-03-23 02:12:31 +00:00
|
|
|
if (!has_required_columns(block))
|
2018-12-11 17:43:12 +00:00
|
|
|
{
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
target_expr->execute(block);
|
|
|
|
|
|
|
|
if (block.rows() == 1)
|
|
|
|
{
|
|
|
|
result.push_back(block);
|
|
|
|
}
|
|
|
|
else if (block.rows() == 0)
|
|
|
|
{
|
|
|
|
// filter out cases like "WHERE a = 1 AND a = 2"
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// FIXME: shouldn't happen
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
}
|
2021-08-09 21:48:44 +00:00
|
|
|
|
|
|
|
bool any_always_false = std::any_of(always_false_map.begin(), always_false_map.end(), [](const auto & v) { return v.second; });
|
|
|
|
if (any_always_false)
|
|
|
|
return Blocks{};
|
|
|
|
|
2018-12-11 17:43:12 +00:00
|
|
|
}
|
2021-03-09 09:45:47 +00:00
|
|
|
else if (const auto * literal = node->as<ASTLiteral>())
|
|
|
|
{
|
|
|
|
// Check if it's always true or false.
|
|
|
|
if (literal->value.getType() == Field::Types::UInt64 && literal->value.get<UInt64>() == 0)
|
|
|
|
return {result};
|
|
|
|
else
|
|
|
|
return {};
|
|
|
|
}
|
2018-12-11 17:43:12 +00:00
|
|
|
|
2018-12-19 12:38:13 +00:00
|
|
|
return {result};
|
2018-12-11 17:43:12 +00:00
|
|
|
}
|
|
|
|
|
2016-02-13 06:37:19 +00:00
|
|
|
}
|