mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 15:42:02 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
44 lines
1.5 KiB
C++
44 lines
1.5 KiB
C++
#pragma once
|
|
|
|
#include <Interpreters/ColumnNamesContext.h>
|
|
#include <Interpreters/InDepthNodeVisitor.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
namespace ErrorCodes
|
|
{
|
|
}
|
|
|
|
class ASTIdentifier;
|
|
class ASTFunction;
|
|
class ASTSelectQuery;
|
|
struct ASTTablesInSelectQueryElement;
|
|
struct ASTArrayJoin;
|
|
struct ASTTableExpression;
|
|
|
|
class RequiredSourceColumnsMatcher
|
|
{
|
|
public:
|
|
using Visitor = ConstInDepthNodeVisitor<RequiredSourceColumnsMatcher, false>;
|
|
using Data = ColumnNamesContext;
|
|
|
|
static bool needChildVisit(const ASTPtr & node, const ASTPtr & child);
|
|
static void visit(const ASTPtr & ast, Data & data);
|
|
|
|
private:
|
|
static void visit(const ASTIdentifier & node, const ASTPtr &, Data & data);
|
|
static void visit(const ASTFunction & node, const ASTPtr &, Data & data);
|
|
static void visit(const ASTTablesInSelectQueryElement & node, const ASTPtr &, Data & data);
|
|
static void visit(const ASTTableExpression & node, const ASTPtr &, Data & data);
|
|
static void visit(const ASTArrayJoin & node, const ASTPtr &, Data & data);
|
|
static void visit(const ASTSelectQuery & select, const ASTPtr &, Data & data);
|
|
};
|
|
|
|
/// Extracts all the information about columns and tables from ASTSelectQuery block into ColumnNamesContext object.
|
|
/// It doesn't use anything but AST. It visits nodes from bottom to top except ASTFunction content to get aliases in right manner.
|
|
/// @note There's some ambiguousness with nested columns names that can't be solved without schema.
|
|
using RequiredSourceColumnsVisitor = RequiredSourceColumnsMatcher::Visitor;
|
|
|
|
}
|