mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 13:13:36 +00:00
28 lines
702 B
C++
28 lines
702 B
C++
#pragma once
|
|
|
|
#include <Interpreters/Aliases.h>
|
|
#include <Interpreters/Context_fwd.h>
|
|
#include <Interpreters/DatabaseAndTableWithAlias.h>
|
|
#include <Parsers/IAST_fwd.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
struct TreeRewriterResult;
|
|
|
|
/// Part of of Tree Rewriter (SyntaxAnalyzer) that optimizes AST.
|
|
/// Query should be ready to execute either before either after it. But resulting query could be faster.
|
|
class TreeOptimizer
|
|
{
|
|
public:
|
|
static void apply(
|
|
ASTPtr & query,
|
|
TreeRewriterResult & result,
|
|
const std::vector<TableWithColumnNamesAndTypes> & tables_with_columns,
|
|
ContextPtr context);
|
|
|
|
static void optimizeIf(ASTPtr & query, Aliases & aliases, bool if_chain_to_multiif);
|
|
};
|
|
|
|
}
|