ClickHouse/src/Interpreters/InterpreterSelectQueryAnalyzer.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

72 lines
2.1 KiB
C++
Raw Normal View History

2022-07-14 11:20:16 +00:00
#pragma once
#include <Interpreters/IInterpreter.h>
#include <Interpreters/SelectQueryOptions.h>
#include <Storages/MergeTree/RequestResponse.h>
2022-07-14 11:20:16 +00:00
#include <Processors/QueryPlan/QueryPlan.h>
#include <Analyzer/QueryTreePassManager.h>
2022-08-24 09:21:03 +00:00
#include <Planner/Planner.h>
#include <Interpreters/Context_fwd.h>
2022-08-24 09:21:03 +00:00
2022-07-14 11:20:16 +00:00
namespace DB
{
2022-12-06 09:44:38 +00:00
class InterpreterSelectQueryAnalyzer : public IInterpreter
2022-07-14 11:20:16 +00:00
{
public:
2022-07-18 17:20:28 +00:00
/// Initialize interpreter with query AST
2022-08-24 09:21:03 +00:00
InterpreterSelectQueryAnalyzer(const ASTPtr & query_,
const ContextPtr & context_,
const SelectQueryOptions & select_query_options_);
2022-07-14 11:20:16 +00:00
2022-08-31 15:21:17 +00:00
/// Initialize interpreter with query tree
InterpreterSelectQueryAnalyzer(const QueryTreeNodePtr & query_tree_,
const ContextPtr & context_,
const SelectQueryOptions & select_query_options_);
2022-08-31 15:21:17 +00:00
ContextPtr getContext() const
2022-12-06 09:44:38 +00:00
{
return context;
}
2022-07-14 11:20:16 +00:00
Block getSampleBlock();
2023-01-26 10:52:40 +00:00
static Block getSampleBlock(const ASTPtr & query,
const ContextPtr & context,
const SelectQueryOptions & select_query_options = {});
static Block getSampleBlock(const QueryTreeNodePtr & query_,
const ContextPtr & context_,
const SelectQueryOptions & select_query_options = {});
2022-07-14 11:20:16 +00:00
BlockIO execute() override;
2022-10-12 11:26:02 +00:00
QueryPlan && extractQueryPlan() &&;
2023-01-20 11:19:16 +00:00
QueryPipelineBuilder buildQueryPipeline();
2022-12-15 12:03:09 +00:00
2022-12-14 17:43:49 +00:00
void addStorageLimits(const StorageLimitsList & storage_limits);
2022-07-14 11:20:16 +00:00
bool supportsTransactions() const override { return true; }
2022-10-12 11:26:02 +00:00
bool ignoreLimits() const override { return select_query_options.ignore_limits; }
bool ignoreQuota() const override { return select_query_options.ignore_quota; }
/// Set merge tree read task callback in context and set collaborate_with_initiator in client info
void setMergeTreeReadTaskCallbackAndClientInfo(MergeTreeReadTaskCallback && callback);
/// Set number_of_current_replica and count_participating_replicas in client_info
void setProperClientInfo(size_t replica_number, size_t count_participating_replicas);
2022-08-15 16:34:10 +00:00
private:
2022-07-18 17:20:28 +00:00
ASTPtr query;
ContextMutablePtr context;
2022-07-14 11:20:16 +00:00
SelectQueryOptions select_query_options;
QueryTreeNodePtr query_tree;
2022-08-24 09:21:03 +00:00
Planner planner;
2022-07-14 11:20:16 +00:00
};
}