ClickHouse/dbms/include/DB/Parsers/ASTSelectQuery.h

88 lines
3.5 KiB
C
Raw Normal View History

2011-08-28 00:31:30 +00:00
#pragma once
2010-06-24 19:12:10 +00:00
#include <DB/Parsers/IAST.h>
#include <DB/Parsers/ASTQueryWithOutput.h>
#include <DB/Parsers/ASTExpressionList.h>
#include <DB/Parsers/ASTFunction.h>
2010-06-24 19:12:10 +00:00
namespace DB
{
/** SELECT запрос
*/
class ASTSelectQuery : public ASTQueryWithOutput
2010-06-24 19:12:10 +00:00
{
public:
2013-06-01 07:43:57 +00:00
bool distinct;
2011-08-28 00:31:30 +00:00
ASTPtr select_expression_list;
ASTPtr database;
2011-11-06 02:29:13 +00:00
ASTPtr table; /// Идентификатор или подзапрос (рекурсивно ASTSelectQuery)
ASTPtr array_join_expression_list;
2013-04-23 11:08:41 +00:00
bool final;
ASTPtr sample_size;
2011-08-28 00:31:30 +00:00
ASTPtr where_expression;
ASTPtr group_expression_list;
bool group_by_with_totals;
2011-08-28 00:31:30 +00:00
ASTPtr having_expression;
ASTPtr order_expression_list;
ASTPtr limit_offset;
ASTPtr limit_length;
2012-08-22 18:46:09 +00:00
2013-06-01 07:43:57 +00:00
ASTSelectQuery() : distinct(false), final(false), group_by_with_totals(false) {}
ASTSelectQuery(StringRange range_) : ASTQueryWithOutput(range_), distinct(false), final(false), group_by_with_totals(false) {}
2010-06-24 19:12:10 +00:00
2011-08-09 19:19:00 +00:00
/** Получить текст, который идентифицирует этот элемент. */
2012-12-27 16:23:12 +00:00
String getID() const { return "SelectQuery"; };
2011-12-12 06:15:34 +00:00
/// Переписывает select_expression_list, чтобы вернуть только необходимые столбцы в правильном порядке.
void rewriteSelectExpressionList(const Names & column_names)
{
ASTPtr result = new ASTExpressionList;
ASTs asts = select_expression_list->children;
for (size_t i = 0; i < column_names.size(); ++i)
{
bool done = 0;
for (size_t j = 0; j < asts.size(); ++j)
{
if (asts[j]->getAlias() == column_names[i])
{
result->children.push_back(asts[j]->clone());
done = 1;
}
}
if (!done)
throw Exception("Error while rewriting expressioin list for select query."
" Could not find alias: " + column_names[i],
DB::ErrorCodes::UNKNOWN_IDENTIFIER);
}
select_expression_list.swap(result);
}
2011-12-12 06:15:34 +00:00
ASTPtr clone() const
{
ASTSelectQuery * res = new ASTSelectQuery(*this);
res->children.clear();
if (select_expression_list) { res->select_expression_list = select_expression_list->clone(); res->children.push_back(res->select_expression_list); }
if (database) { res->database = database->clone(); res->children.push_back(res->database); }
if (table) { res->table = table->clone(); res->children.push_back(res->table); }
if (array_join_expression_list) { res->array_join_expression_list = array_join_expression_list->clone(); res->children.push_back(res->array_join_expression_list); }
if (sample_size) { res->sample_size = sample_size->clone(); res->children.push_back(res->sample_size); }
2011-12-12 06:15:34 +00:00
if (where_expression) { res->where_expression = where_expression->clone(); res->children.push_back(res->where_expression); }
if (group_expression_list) { res->group_expression_list = group_expression_list->clone(); res->children.push_back(res->group_expression_list); }
if (having_expression) { res->having_expression = having_expression->clone(); res->children.push_back(res->having_expression); }
if (order_expression_list) { res->order_expression_list = order_expression_list->clone(); res->children.push_back(res->order_expression_list); }
if (limit_offset) { res->limit_offset = limit_offset->clone(); res->children.push_back(res->limit_offset); }
if (limit_length) { res->limit_length = limit_length->clone(); res->children.push_back(res->limit_length); }
if (format) { res->format = format->clone(); res->children.push_back(res->format); }
return res;
}
2010-06-24 19:12:10 +00:00
};
}