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>
|
|
|
|
#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>
|
|
|
|
#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>
|
2016-02-13 06:37:19 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
namespace ErrorCodes
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
extern const int LOGICAL_ERROR;
|
|
|
|
extern const int BAD_ARGUMENTS;
|
2016-02-13 06:37:19 +00:00
|
|
|
}
|
|
|
|
|
2016-08-25 17:23:29 +00:00
|
|
|
|
2017-12-18 01:11:48 +00:00
|
|
|
std::pair<Field, std::shared_ptr<const IDataType>> evaluateConstantExpression(const ASTPtr & node, const Context & context)
|
2016-02-13 06:37:19 +00:00
|
|
|
{
|
2018-11-08 15:43:14 +00:00
|
|
|
NamesAndTypesList source_columns = {{ "_dummy", std::make_shared<DataTypeUInt8>() }};
|
2018-11-08 17:28:52 +00:00
|
|
|
auto ast = node->clone();
|
2019-10-07 10:24:35 +00:00
|
|
|
ReplaceQueryParameterVisitor param_visitor(context.getQueryParameters());
|
|
|
|
param_visitor.visit(ast);
|
2021-02-17 15:36:37 +00:00
|
|
|
FunctionNameNormalizer().visit(ast.get());
|
2019-10-07 10:24:35 +00:00
|
|
|
String name = ast->getColumnName();
|
2020-07-22 17:13:05 +00:00
|
|
|
auto syntax_result = TreeRewriter(context).analyze(ast, source_columns);
|
2018-11-08 17:28:52 +00:00
|
|
|
ExpressionActionsPtr expr_for_constant_folding = ExpressionAnalyzer(ast, syntax_result, context).getConstActions();
|
2016-02-13 06:37:19 +00:00
|
|
|
|
2017-04-02 17:37:49 +00:00
|
|
|
/// There must be at least one column in the block so that it knows the number of rows.
|
2017-12-14 01:43:19 +00:00
|
|
|
Block block_with_constants{{ ColumnConst::create(ColumnUInt8::create(1, 0), 1), std::make_shared<DataTypeUInt8>(), "_dummy" }};
|
2016-02-13 06:37:19 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
expr_for_constant_folding->execute(block_with_constants);
|
2016-02-13 06:37:19 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
if (!block_with_constants || block_with_constants.rows() == 0)
|
2019-02-03 18:31:17 +00:00
|
|
|
throw Exception("Logical error: empty block after evaluation of constant expression for IN, VALUES or LIMIT", ErrorCodes::LOGICAL_ERROR);
|
2016-02-13 06:37:19 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
if (!block_with_constants.has(name))
|
2019-09-20 19:44:52 +00:00
|
|
|
throw Exception("Element of set in IN, VALUES or LIMIT is not a constant expression (result column not found): " + name, ErrorCodes::BAD_ARGUMENTS);
|
2016-02-13 06:37:19 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
const ColumnWithTypeAndName & result = block_with_constants.getByName(name);
|
|
|
|
const IColumn & result_column = *result.column;
|
2016-02-13 06:37:19 +00:00
|
|
|
|
2019-09-28 22:12:29 +00:00
|
|
|
/// Expressions like rand() or now() are not constant
|
2019-06-27 19:28:52 +00:00
|
|
|
if (!isColumnConst(result_column))
|
2019-09-20 19:44:52 +00:00
|
|
|
throw Exception("Element of set in IN, VALUES or LIMIT is not a constant expression (result column is not const): " + name, ErrorCodes::BAD_ARGUMENTS);
|
2016-02-13 06:37:19 +00:00
|
|
|
|
2017-04-01 07:20:54 +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
|
|
|
|
2017-09-17 18:49:43 +00:00
|
|
|
ASTPtr evaluateConstantExpressionAsLiteral(const ASTPtr & node, const Context & 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>())
|
2017-04-01 07:20:54 +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
|
|
|
}
|
|
|
|
|
2017-09-17 18:49:43 +00:00
|
|
|
ASTPtr evaluateConstantExpressionOrIdentifierAsLiteral(const ASTPtr & node, const Context & 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
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
return evaluateConstantExpressionAsLiteral(node, context);
|
2016-08-25 17:23:29 +00:00
|
|
|
}
|
|
|
|
|
2020-02-19 18:58:29 +00:00
|
|
|
ASTPtr evaluateConstantExpressionForDatabaseName(const ASTPtr & node, const Context & context)
|
|
|
|
{
|
|
|
|
ASTPtr res = evaluateConstantExpressionOrIdentifierAsLiteral(node, context);
|
|
|
|
auto & literal = res->as<ASTLiteral &>();
|
|
|
|
if (literal.value.safeGet<String>().empty())
|
|
|
|
{
|
|
|
|
String current_database = context.getCurrentDatabase();
|
|
|
|
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.
|
|
|
|
literal.value = context.getConfigRef().getString("default_database", "default");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
literal.value = current_database;
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
Disjunction analyzeFunction(const ASTFunction * fn, const ExpressionActionsPtr & expr)
|
|
|
|
{
|
|
|
|
if (!fn)
|
|
|
|
{
|
|
|
|
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
|
|
|
|
|
|
|
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
|
|
|
|
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
|
|
|
|
2020-03-24 12:55:35 +00:00
|
|
|
result.insert(result.end(), dnf.begin(), dnf.end());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (const auto * tuple_literal = right->as<ASTLiteral>();
|
|
|
|
tuple_literal && tuple_literal->value.getType() == Field::Types::Tuple)
|
2018-12-11 17:43:12 +00:00
|
|
|
{
|
2020-03-24 12:55:35 +00:00
|
|
|
const auto & tuple = tuple_literal->value.get<const Tuple &>();
|
|
|
|
for (const auto & child : tuple)
|
2018-12-11 17:43:12 +00:00
|
|
|
{
|
2020-03-24 12:55:35 +00:00
|
|
|
const auto dnf = analyzeEquals(identifier, child, expr);
|
2018-12-11 17:43:12 +00:00
|
|
|
|
2020-03-24 12:55:35 +00:00
|
|
|
if (dnf.empty())
|
|
|
|
{
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
result.insert(result.end(), dnf.begin(), dnf.end());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
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)
|
|
|
|
{
|
2019-03-11 13:22:51 +00:00
|
|
|
const auto dnf = analyzeFunction(arg->as<ASTFunction>(), expr);
|
2018-12-11 17:43:12 +00:00
|
|
|
|
|
|
|
if (dnf.empty())
|
|
|
|
{
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
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)
|
|
|
|
{
|
2019-03-11 13:22:51 +00:00
|
|
|
const auto dnf = analyzeFunction(arg->as<ASTFunction>(), expr);
|
2018-12-11 17:43:12 +00:00
|
|
|
|
|
|
|
if (dnf.empty())
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
result = andDNF(result, dnf);
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-19 12:38:13 +00:00
|
|
|
std::optional<Blocks> evaluateExpressionOverConstantCondition(const ASTPtr & node, const ExpressionActionsPtr & target_expr)
|
2018-12-11 17:43:12 +00:00
|
|
|
{
|
|
|
|
Blocks result;
|
|
|
|
|
|
|
|
// TODO: `node` may be always-false literal.
|
|
|
|
|
2019-03-11 13:22:51 +00:00
|
|
|
if (const auto * fn = node->as<ASTFunction>())
|
2018-12-11 17:43:12 +00:00
|
|
|
{
|
|
|
|
const auto dnf = analyzeFunction(fn, target_expr);
|
|
|
|
|
|
|
|
if (dnf.empty())
|
|
|
|
{
|
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)
|
|
|
|
{
|
|
|
|
Block block(conjunct);
|
|
|
|
|
|
|
|
// 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 {};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|