mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
134 lines
4.2 KiB
C++
134 lines
4.2 KiB
C++
#include <Core/NamesAndTypes.h>
|
|
|
|
#include <Interpreters/Context.h>
|
|
#include <Interpreters/SyntaxAnalyzer.h>
|
|
#include <Interpreters/ExpressionAnalyzer.h>
|
|
#include <Interpreters/ExpressionActions.h>
|
|
#include <Interpreters/IdentifierSemantic.h>
|
|
|
|
#include <Parsers/ASTIdentifier.h>
|
|
#include <Parsers/ASTExpressionList.h>
|
|
#include <Parsers/ASTLiteral.h>
|
|
#include <Parsers/ASTFunction.h>
|
|
#include <Parsers/ASTSelectQuery.h>
|
|
|
|
#include <Columns/ColumnsNumber.h>
|
|
#include <Columns/ColumnsCommon.h>
|
|
|
|
#include <Storages/VirtualColumnUtils.h>
|
|
#include <IO/WriteHelpers.h>
|
|
#include <Common/typeid_cast.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
namespace
|
|
{
|
|
|
|
/// Verifying that the function depends only on the specified columns
|
|
bool isValidFunction(const ASTPtr & expression, const NameSet & columns)
|
|
{
|
|
for (size_t i = 0; i < expression->children.size(); ++i)
|
|
if (!isValidFunction(expression->children[i], columns))
|
|
return false;
|
|
|
|
if (auto opt_name = IdentifierSemantic::getColumnName(expression))
|
|
return columns.count(*opt_name);
|
|
|
|
return true;
|
|
}
|
|
|
|
/// Extract all subfunctions of the main conjunction, but depending only on the specified columns
|
|
void extractFunctions(const ASTPtr & expression, const NameSet & columns, std::vector<ASTPtr> & result)
|
|
{
|
|
const auto * function = expression->as<ASTFunction>();
|
|
if (function && function->name == "and")
|
|
{
|
|
for (size_t i = 0; i < function->arguments->children.size(); ++i)
|
|
extractFunctions(function->arguments->children[i], columns, result);
|
|
}
|
|
else if (isValidFunction(expression, columns))
|
|
{
|
|
result.push_back(expression->clone());
|
|
}
|
|
}
|
|
|
|
/// Construct a conjunction from given functions
|
|
ASTPtr buildWhereExpression(const ASTs & functions)
|
|
{
|
|
if (functions.size() == 0)
|
|
return nullptr;
|
|
if (functions.size() == 1)
|
|
return functions[0];
|
|
ASTPtr new_query = std::make_shared<ASTFunction>();
|
|
auto & new_function = new_query->as<ASTFunction &>();
|
|
new_function.name = "and";
|
|
new_function.arguments = std::make_shared<ASTExpressionList>();
|
|
new_function.arguments->children = functions;
|
|
new_function.children.push_back(new_function.arguments);
|
|
return new_query;
|
|
}
|
|
|
|
}
|
|
|
|
namespace VirtualColumnUtils
|
|
{
|
|
|
|
void rewriteEntityInAst(ASTPtr ast, const String & column_name, const Field & value)
|
|
{
|
|
auto & select = ast->as<ASTSelectQuery &>();
|
|
if (!select.with())
|
|
select.setExpression(ASTSelectQuery::Expression::WITH, std::make_shared<ASTExpressionList>());
|
|
|
|
auto literal = std::make_shared<ASTLiteral>(value);
|
|
literal->alias = column_name;
|
|
literal->prefer_alias_to_column_name = true;
|
|
select.with()->children.push_back(literal);
|
|
}
|
|
|
|
void filterBlockWithQuery(const ASTPtr & query, Block & block, const Context & context)
|
|
{
|
|
const auto & select = query->as<ASTSelectQuery &>();
|
|
if (!select.where() && !select.prewhere())
|
|
return;
|
|
|
|
NameSet columns;
|
|
for (const auto & it : block.getNamesAndTypesList())
|
|
columns.insert(it.name);
|
|
|
|
/// We will create an expression that evaluates the expressions in WHERE and PREWHERE, depending only on the existing columns.
|
|
std::vector<ASTPtr> functions;
|
|
if (select.where())
|
|
extractFunctions(select.where(), columns, functions);
|
|
if (select.prewhere())
|
|
extractFunctions(select.prewhere(), columns, functions);
|
|
|
|
ASTPtr expression_ast = buildWhereExpression(functions);
|
|
if (!expression_ast)
|
|
return;
|
|
|
|
/// Let's analyze and calculate the expression.
|
|
auto syntax_result = SyntaxAnalyzer(context).analyze(expression_ast, block.getNamesAndTypesList());
|
|
ExpressionAnalyzer analyzer(expression_ast, syntax_result, context);
|
|
ExpressionActionsPtr actions = analyzer.getActions(false);
|
|
|
|
Block block_with_filter = block;
|
|
actions->execute(block_with_filter);
|
|
|
|
/// Filter the block.
|
|
String filter_column_name = expression_ast->getColumnName();
|
|
ColumnPtr filter_column = block_with_filter.getByName(filter_column_name).column->convertToFullColumnIfConst();
|
|
const IColumn::Filter & filter = typeid_cast<const ColumnUInt8 &>(*filter_column).getData();
|
|
|
|
for (size_t i = 0; i < block.columns(); ++i)
|
|
{
|
|
ColumnPtr & column = block.safeGetByPosition(i).column;
|
|
column = column->filter(filter, -1);
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
}
|