#pragma once #include #include #include #include #include namespace DB { class InterpreterSelectQueryAnalyzer : public IInterpreter { public: /// Initialize interpreter with query AST InterpreterSelectQueryAnalyzer(const ASTPtr & query_, const ContextPtr & context_, const SelectQueryOptions & select_query_options_, const Names & column_names = {}); /** Initialize interpreter with query AST and storage. * After query tree is built left most table expression is replaced with table node that * is initialized with provided storage. */ InterpreterSelectQueryAnalyzer(const ASTPtr & query_, const ContextPtr & context_, const StoragePtr & storage_, const SelectQueryOptions & select_query_options_, const Names & column_names = {}); /** Initialize interpreter with query tree. * No query tree passes are applied. */ InterpreterSelectQueryAnalyzer(const QueryTreeNodePtr & query_tree_, const ContextPtr & context_, const SelectQueryOptions & select_query_options_); ContextPtr getContext() const { return context; } Block getSampleBlock(); static Block getSampleBlock(const ASTPtr & query, const ContextPtr & context, const SelectQueryOptions & select_query_options = {}); static Block getSampleBlock(const QueryTreeNodePtr & query_tree, const ContextPtr & context_, const SelectQueryOptions & select_query_options = {}); BlockIO execute() override; QueryPlan & getQueryPlan(); QueryPlan && extractQueryPlan() &&; QueryPipelineBuilder buildQueryPipeline(); void addStorageLimits(const StorageLimitsList & storage_limits); void extendQueryLogElemImpl(QueryLogElement & elem, const ASTPtr & /*ast*/, ContextPtr /*context*/) const override; bool supportsTransactions() const override { return true; } bool ignoreLimits() const override { return select_query_options.ignore_limits; } bool ignoreQuota() const override { return select_query_options.ignore_quota; } const Planner & getPlanner() const { return planner; } Planner & getPlanner() { return planner; } const QueryTreeNodePtr & getQueryTree() const { return query_tree; } private: ASTPtr query; ContextMutablePtr context; SelectQueryOptions select_query_options; QueryTreeNodePtr query_tree; Planner planner; }; }