mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-06 15:42:39 +00:00
e052a5a05e
This reverts commit 527210b5e4
.
35 lines
837 B
C++
35 lines
837 B
C++
#pragma once
|
|
|
|
#include <Interpreters/InDepthNodeVisitor.h>
|
|
#include <Interpreters/Aliases.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class ASTSelectQuery;
|
|
struct TableWithColumnNamesAndTypes;
|
|
|
|
/// AST transformer. It replaces cross joins with equivalented inner join if possible.
|
|
class CrossToInnerJoinMatcher
|
|
{
|
|
public:
|
|
struct Data
|
|
{
|
|
const std::vector<TableWithColumnNamesAndTypes> & tables_with_columns;
|
|
const Aliases & aliases;
|
|
const String current_database;
|
|
bool done = false;
|
|
bool cross_to_inner_join_rewrite = true;
|
|
};
|
|
|
|
static bool needChildVisit(ASTPtr &, const ASTPtr &);
|
|
static void visit(ASTPtr & ast, Data & data);
|
|
|
|
private:
|
|
static void visit(ASTSelectQuery & select, ASTPtr & ast, Data & data);
|
|
};
|
|
|
|
using CrossToInnerJoinVisitor = InDepthNodeVisitor<CrossToInnerJoinMatcher, true>;
|
|
|
|
}
|