2011-08-28 05:13:24 +00:00
|
|
|
|
#pragma once
|
|
|
|
|
|
2012-05-09 13:12:38 +00:00
|
|
|
|
#include <DB/Core/QueryProcessingStage.h>
|
|
|
|
|
#include <DB/Interpreters/Expression.h>
|
2011-08-28 05:13:24 +00:00
|
|
|
|
#include <DB/Interpreters/Context.h>
|
|
|
|
|
#include <DB/DataStreams/IBlockInputStream.h>
|
2012-05-09 13:12:38 +00:00
|
|
|
|
#include <DB/Parsers/ASTSelectQuery.h>
|
2011-08-28 05:13:24 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
2012-05-09 13:12:38 +00:00
|
|
|
|
/** Интерпретирует запрос SELECT. Возвращает поток блоков с результатами выполнения запроса до стадии to_stage.
|
2011-08-28 05:13:24 +00:00
|
|
|
|
*/
|
|
|
|
|
class InterpreterSelectQuery
|
|
|
|
|
{
|
|
|
|
|
public:
|
2012-12-25 20:36:35 +00:00
|
|
|
|
InterpreterSelectQuery(ASTPtr query_ptr_, const Context & context_, QueryProcessingStage::Enum to_stage_ = QueryProcessingStage::Complete,
|
|
|
|
|
size_t subquery_depth_ = 0);
|
2011-08-28 05:13:24 +00:00
|
|
|
|
|
2011-10-30 05:19:41 +00:00
|
|
|
|
/// Выполнить запрос, получить поток блоков для чтения
|
2011-08-28 05:13:24 +00:00
|
|
|
|
BlockInputStreamPtr execute();
|
|
|
|
|
|
2011-10-30 05:19:41 +00:00
|
|
|
|
/** Выполнить запрос, записать результат в нужном формате в buf.
|
|
|
|
|
* BlockInputStreamPtr возвращается, чтобы можно было потом получить информацию о плане выполнения запроса.
|
|
|
|
|
*/
|
|
|
|
|
BlockInputStreamPtr executeAndFormat(WriteBuffer & buf);
|
|
|
|
|
|
2011-08-28 05:13:24 +00:00
|
|
|
|
DataTypes getReturnTypes();
|
2011-10-30 05:19:41 +00:00
|
|
|
|
Block getSampleBlock();
|
2011-08-28 05:13:24 +00:00
|
|
|
|
|
2012-08-20 19:21:04 +00:00
|
|
|
|
/** Получить CREATE запрос для таблицы, из которой идёт выбор.
|
|
|
|
|
*/
|
|
|
|
|
ASTPtr getCreateQuery();
|
|
|
|
|
|
2011-08-28 05:13:24 +00:00
|
|
|
|
private:
|
2012-08-20 19:21:04 +00:00
|
|
|
|
/** Из какой таблицы читать. JOIN-ы не поддерживаются.
|
|
|
|
|
*/
|
|
|
|
|
void getDatabaseAndTableNames(String & database_name, String & table_name);
|
|
|
|
|
|
2011-08-28 05:13:24 +00:00
|
|
|
|
StoragePtr getTable();
|
2011-11-06 02:29:13 +00:00
|
|
|
|
|
|
|
|
|
void setColumns();
|
2011-08-28 05:13:24 +00:00
|
|
|
|
|
|
|
|
|
/** Пометить часть дерева запроса некоторым part_id.
|
|
|
|
|
* - для того, чтобы потом можно было вычислить только часть выражения из запроса.
|
|
|
|
|
*/
|
|
|
|
|
void setPartID(ASTPtr ast, unsigned part_id);
|
|
|
|
|
|
2012-05-09 13:12:38 +00:00
|
|
|
|
/** Выбрать из списка столбцов какой-нибудь, лучше - минимального размера.
|
|
|
|
|
*/
|
|
|
|
|
String getAnyColumn();
|
|
|
|
|
|
2011-08-28 05:13:24 +00:00
|
|
|
|
enum PartID
|
|
|
|
|
{
|
2011-09-04 05:14:52 +00:00
|
|
|
|
PART_OTHER = 1,
|
|
|
|
|
PART_SELECT = 2,
|
|
|
|
|
PART_WHERE = 4,
|
2011-09-24 20:32:41 +00:00
|
|
|
|
PART_GROUP = 8,
|
|
|
|
|
PART_HAVING = 16,
|
|
|
|
|
PART_ORDER = 32,
|
2012-08-27 05:13:14 +00:00
|
|
|
|
PART_BEFORE_AGGREGATING = 64, /// Под агрегатной функцией
|
|
|
|
|
PART_BEFORE_ARRAY_JOIN = 128, /// Под функцией arrayJoin
|
2013-03-27 13:26:25 +00:00
|
|
|
|
PART_AFTER_AGGREGATING = 256, /// Вне агрегатной функции
|
2011-08-28 05:13:24 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2012-05-09 13:12:38 +00:00
|
|
|
|
/// Разные стадии выполнения запроса.
|
2012-05-22 18:32:45 +00:00
|
|
|
|
|
|
|
|
|
/// Вынимает данные из таблицы. Возвращает стадию, до которой запрос был обработан в Storage.
|
|
|
|
|
QueryProcessingStage::Enum executeFetchColumns(BlockInputStreams & streams, ExpressionPtr & expression);
|
2012-08-27 05:13:14 +00:00
|
|
|
|
|
|
|
|
|
void executeArrayJoin( BlockInputStreams & streams, ExpressionPtr & expression);
|
2012-05-09 13:12:38 +00:00
|
|
|
|
void executeWhere( BlockInputStreams & streams, ExpressionPtr & expression);
|
|
|
|
|
void executeAggregation( BlockInputStreams & streams, ExpressionPtr & expression);
|
2012-05-30 01:38:02 +00:00
|
|
|
|
void executeMergeAggregated( BlockInputStreams & streams, ExpressionPtr & expression);
|
2012-05-09 13:12:38 +00:00
|
|
|
|
void executeFinalizeAggregates( BlockInputStreams & streams, ExpressionPtr & expression);
|
|
|
|
|
void executeHaving( BlockInputStreams & streams, ExpressionPtr & expression);
|
|
|
|
|
void executeOuterExpression( BlockInputStreams & streams, ExpressionPtr & expression);
|
|
|
|
|
void executeOrder( BlockInputStreams & streams, ExpressionPtr & expression);
|
2013-06-01 07:43:57 +00:00
|
|
|
|
void executeDistinct( BlockInputStreams & streams, bool before_order);
|
2012-06-24 23:17:06 +00:00
|
|
|
|
void executePreLimit( BlockInputStreams & streams, ExpressionPtr & expression);
|
2012-05-09 13:12:38 +00:00
|
|
|
|
void executeUnion( BlockInputStreams & streams, ExpressionPtr & expression);
|
|
|
|
|
void executeLimit( BlockInputStreams & streams, ExpressionPtr & expression);
|
|
|
|
|
|
|
|
|
|
|
2011-08-28 05:13:24 +00:00
|
|
|
|
ASTPtr query_ptr;
|
2012-05-09 13:12:38 +00:00
|
|
|
|
ASTSelectQuery & query;
|
2011-08-28 05:13:24 +00:00
|
|
|
|
Context context;
|
2012-08-02 17:33:31 +00:00
|
|
|
|
Settings settings;
|
2012-05-09 13:12:38 +00:00
|
|
|
|
QueryProcessingStage::Enum to_stage;
|
2012-12-25 20:36:35 +00:00
|
|
|
|
size_t subquery_depth;
|
2012-06-25 03:56:45 +00:00
|
|
|
|
|
|
|
|
|
Logger * log;
|
2011-08-28 05:13:24 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|