mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-11 18:14:03 +00:00
90 lines
4.1 KiB
C++
90 lines
4.1 KiB
C++
#pragma once
|
||
|
||
#include <DB/Core/QueryProcessingStage.h>
|
||
#include <DB/Interpreters/Context.h>
|
||
#include <DB/Interpreters/ExpressionAnalyzer.h>
|
||
#include <DB/DataStreams/IBlockInputStream.h>
|
||
#include <DB/Parsers/ASTSelectQuery.h>
|
||
#include <DB/TableFunctions/ITableFunction.h>
|
||
|
||
namespace DB
|
||
{
|
||
|
||
|
||
/** Интерпретирует запрос SELECT. Возвращает поток блоков с результатами выполнения запроса до стадии to_stage.
|
||
*/
|
||
class InterpreterSelectQuery
|
||
{
|
||
public:
|
||
InterpreterSelectQuery(ASTPtr query_ptr_, const Context & context_, QueryProcessingStage::Enum to_stage_ = QueryProcessingStage::Complete, size_t subquery_depth_ = 0, BlockInputStreamPtr input = nullptr);
|
||
|
||
InterpreterSelectQuery(ASTPtr query_ptr_, const Context & context_, const Names & required_column_names,
|
||
QueryProcessingStage::Enum to_stage_ = QueryProcessingStage::Complete, size_t subquery_depth_ = 0, BlockInputStreamPtr input = nullptr);
|
||
|
||
InterpreterSelectQuery(ASTPtr query_ptr_, const Context & context_, const Names & required_column_names, const NamesAndTypesList & table_column_names, QueryProcessingStage::Enum to_stage_ = QueryProcessingStage::Complete, size_t subquery_depth_ = 0, BlockInputStreamPtr input = nullptr);
|
||
|
||
/// Выполнить запрос, получить поток блоков для чтения
|
||
BlockInputStreamPtr execute();
|
||
|
||
/** Выполнить запрос, записать результат в нужном формате в buf.
|
||
* BlockInputStreamPtr возвращается, чтобы можно было потом получить информацию о плане выполнения запроса.
|
||
*/
|
||
BlockInputStreamPtr executeAndFormat(WriteBuffer & buf);
|
||
|
||
DataTypes getReturnTypes();
|
||
Block getSampleBlock();
|
||
|
||
private:
|
||
typedef Poco::SharedPtr<ExpressionAnalyzer> ExpressionAnalyzerPtr;
|
||
|
||
void init(BlockInputStreamPtr input, const NamesAndTypesList & table_column_names = NamesAndTypesList());
|
||
|
||
/** Из какой таблицы читать. JOIN-ы не поддерживаются.
|
||
*/
|
||
void getDatabaseAndTableNames(String & database_name, String & table_name);
|
||
|
||
/** Выбрать из списка столбцов какой-нибудь, лучше - минимального размера.
|
||
*/
|
||
String getAnyColumn();
|
||
|
||
/// Разные стадии выполнения запроса.
|
||
|
||
/// Вынимает данные из таблицы. Возвращает стадию, до которой запрос был обработан в Storage.
|
||
QueryProcessingStage::Enum executeFetchColumns(BlockInputStreams & streams);
|
||
|
||
void executeWhere( BlockInputStreams & streams, ExpressionActionsPtr expression);
|
||
void executeAggregation( BlockInputStreams & streams, ExpressionActionsPtr expression,
|
||
bool overflow_row, bool final);
|
||
void executeMergeAggregated( BlockInputStreams & streams, bool overflow_row, bool final);
|
||
void executeTotalsAndHaving( BlockInputStreams & streams, bool has_having, ExpressionActionsPtr expression,
|
||
bool overflow_row);
|
||
void executeHaving( BlockInputStreams & streams, ExpressionActionsPtr expression);
|
||
void executeExpression( BlockInputStreams & streams, ExpressionActionsPtr expression);
|
||
void executeOrder( BlockInputStreams & streams);
|
||
void executePreLimit( BlockInputStreams & streams);
|
||
void executeUnion( BlockInputStreams & streams);
|
||
void executeLimit( BlockInputStreams & streams);
|
||
void executeProjection( BlockInputStreams & streams, ExpressionActionsPtr expression);
|
||
void executeDistinct( BlockInputStreams & streams, bool before_order, Names columns);
|
||
void executeSubqueriesInSets( BlockInputStreams & streams, const Sets & sets);
|
||
|
||
|
||
ASTPtr query_ptr;
|
||
ASTSelectQuery & query;
|
||
Context context;
|
||
Settings settings;
|
||
QueryProcessingStage::Enum to_stage;
|
||
size_t subquery_depth;
|
||
ExpressionAnalyzerPtr query_analyzer;
|
||
BlockInputStreams streams;
|
||
|
||
/// Таблица, откуда читать данные, если не подзапрос.
|
||
StoragePtr storage;
|
||
IStorage::TableStructureReadLockPtr table_lock;
|
||
|
||
Logger * log;
|
||
};
|
||
|
||
|
||
}
|