ClickHouse/dbms/src/Interpreters/QueryAliasesVisitor.h

39 lines
990 B
C++
Raw Normal View History

#pragma once
2019-01-25 11:43:19 +00:00
#include <Interpreters/Aliases.h>
#include <Interpreters/InDepthNodeVisitor.h>
namespace DB
{
class ASTSelectQuery;
class ASTSubquery;
struct ASTTableExpression;
struct ASTArrayJoin;
/// Visits AST node to collect aliases.
class QueryAliasesMatcher
{
public:
2019-02-22 13:33:56 +00:00
using Visitor = InDepthNodeVisitor<QueryAliasesMatcher, false>;
struct Data
{
Aliases & aliases;
};
2019-02-22 13:33:56 +00:00
static void visit(ASTPtr & ast, Data & data);
static bool needChildVisit(ASTPtr & node, const ASTPtr & child);
private:
static void visit(const ASTSelectQuery & select, const ASTPtr & ast, Data & data);
2019-02-22 13:33:56 +00:00
static void visit(ASTSubquery & subquery, const ASTPtr & ast, Data & data);
static void visit(const ASTArrayJoin &, const ASTPtr & ast, Data & data);
static void visitOther(const ASTPtr & ast, Data & data);
};
/// Visits AST nodes and collect their aliases in one map (with links to source nodes).
2019-02-22 13:33:56 +00:00
using QueryAliasesVisitor = QueryAliasesMatcher::Visitor;
}