2011-08-18 18:48:00 +00:00
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <DB/Parsers/IParserBase.h>
|
|
|
|
|
#include <DB/Parsers/ExpressionElementParsers.h>
|
2014-05-20 16:46:33 +00:00
|
|
|
|
#include <DB/Parsers/ASTNameTypePair.h>
|
|
|
|
|
#include <DB/Parsers/ASTIdentifier.h>
|
|
|
|
|
#include <DB/Parsers/CommonParsers.h>
|
2011-08-18 18:48:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
|
{
|
|
|
|
|
|
2013-07-11 17:35:56 +00:00
|
|
|
|
/** Вложенная таблица. Например, Nested(UInt32 CounterID, FixedString(2) UserAgentMajor)
|
|
|
|
|
*/
|
|
|
|
|
class ParserNestedTable : public IParserBase
|
|
|
|
|
{
|
|
|
|
|
protected:
|
2014-03-10 12:25:37 +00:00
|
|
|
|
const char * getName() const { return "nested table"; }
|
2014-06-12 00:48:56 +00:00
|
|
|
|
bool parseImpl(Pos & pos, Pos end, ASTPtr & node, Expected & expected);
|
2013-07-11 17:35:56 +00:00
|
|
|
|
};
|
|
|
|
|
|
2014-06-26 00:58:14 +00:00
|
|
|
|
|
2013-07-11 17:35:56 +00:00
|
|
|
|
/** Параметрический тип или Storage. Например:
|
|
|
|
|
* FixedString(10) или
|
|
|
|
|
* Partitioned(Log, ChunkID) или
|
|
|
|
|
* Nested(UInt32 CounterID, FixedString(2) UserAgentMajor)
|
|
|
|
|
* Результат парсинга - ASTFunction с параметрами или без.
|
|
|
|
|
*/
|
|
|
|
|
class ParserIdentifierWithParameters : public IParserBase
|
|
|
|
|
{
|
|
|
|
|
protected:
|
2014-03-10 12:25:37 +00:00
|
|
|
|
const char * getName() const { return "identifier with parameters"; }
|
2014-06-12 00:48:56 +00:00
|
|
|
|
bool parseImpl(Pos & pos, Pos end, ASTPtr & node, Expected & expected);
|
2013-07-11 17:35:56 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** Тип или Storage, возможно, параметрический. Например, UInt8 или примеры из ParserIdentifierWithParameters
|
|
|
|
|
* Результат парсинга - ASTFunction с параметрами или без.
|
2011-08-18 18:48:00 +00:00
|
|
|
|
*/
|
|
|
|
|
class ParserIdentifierWithOptionalParameters : public IParserBase
|
|
|
|
|
{
|
|
|
|
|
protected:
|
2014-03-10 12:25:37 +00:00
|
|
|
|
const char * getName() const { return "identifier with optional parameters"; }
|
2014-06-12 00:48:56 +00:00
|
|
|
|
bool parseImpl(Pos & pos, Pos end, ASTPtr & node, Expected & expected);
|
2011-08-18 18:48:00 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2014-05-20 16:46:33 +00:00
|
|
|
|
template <class NameParser>
|
|
|
|
|
class IParserNameTypePair : public IParserBase
|
2011-08-18 18:48:00 +00:00
|
|
|
|
{
|
|
|
|
|
protected:
|
2014-03-10 12:25:37 +00:00
|
|
|
|
const char * getName() const { return "name and type pair"; }
|
2014-06-12 00:48:56 +00:00
|
|
|
|
bool parseImpl(Pos & pos, Pos end, ASTPtr & node, Expected & expected);
|
2011-08-18 18:48:00 +00:00
|
|
|
|
};
|
|
|
|
|
|
2014-05-20 16:46:33 +00:00
|
|
|
|
/** Имя и тип через пробел. Например, URL String. */
|
|
|
|
|
typedef IParserNameTypePair<ParserIdentifier> ParserNameTypePair;
|
|
|
|
|
/** Имя и тип через пробел. Имя может содержать точку. Например, Hits.URL String. */
|
|
|
|
|
typedef IParserNameTypePair<ParserCompoundIdentifier> ParserCompoundNameTypePair;
|
|
|
|
|
|
|
|
|
|
template <class NameParser>
|
2014-06-12 00:48:56 +00:00
|
|
|
|
bool IParserNameTypePair<NameParser>::parseImpl(Pos & pos, Pos end, ASTPtr & node, Expected & expected)
|
2014-05-20 16:46:33 +00:00
|
|
|
|
{
|
|
|
|
|
NameParser name_parser;
|
|
|
|
|
ParserIdentifierWithOptionalParameters type_parser;
|
|
|
|
|
ParserWhiteSpaceOrComments ws_parser;
|
|
|
|
|
|
|
|
|
|
Pos begin = pos;
|
|
|
|
|
|
|
|
|
|
ASTPtr name, type;
|
|
|
|
|
if (name_parser.parse(pos, end, name, expected)
|
|
|
|
|
&& ws_parser.ignore(pos, end, expected)
|
|
|
|
|
&& type_parser.parse(pos, end, type, expected))
|
|
|
|
|
{
|
|
|
|
|
ASTNameTypePair * name_type_pair = new ASTNameTypePair(StringRange(begin, pos));
|
|
|
|
|
node = name_type_pair;
|
2014-06-26 00:58:14 +00:00
|
|
|
|
name_type_pair->name = typeid_cast<ASTIdentifier &>(*name).name;
|
2014-05-20 16:46:33 +00:00
|
|
|
|
name_type_pair->type = type;
|
|
|
|
|
name_type_pair->children.push_back(type);
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pos = begin;
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2011-08-18 18:48:00 +00:00
|
|
|
|
|
2013-07-11 17:35:56 +00:00
|
|
|
|
/** Список столбцов. */
|
|
|
|
|
class ParserNameTypePairList : public IParserBase
|
|
|
|
|
{
|
|
|
|
|
protected:
|
2014-03-10 12:25:37 +00:00
|
|
|
|
const char * getName() const { return "name and type pair list"; }
|
2014-06-12 00:48:56 +00:00
|
|
|
|
bool parseImpl(Pos & pos, Pos end, ASTPtr & node, Expected & expected);
|
2013-07-11 17:35:56 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2011-11-01 15:16:04 +00:00
|
|
|
|
/** ENGINE = name. */
|
|
|
|
|
class ParserEngine : public IParserBase
|
|
|
|
|
{
|
|
|
|
|
protected:
|
2014-03-10 12:25:37 +00:00
|
|
|
|
const char * getName() const { return "ENGINE"; }
|
2014-06-12 00:48:56 +00:00
|
|
|
|
bool parseImpl(Pos & pos, Pos end, ASTPtr & node, Expected & expected);
|
2011-11-01 15:16:04 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2011-08-18 18:48:00 +00:00
|
|
|
|
/** Запрос типа такого:
|
2011-10-31 06:37:12 +00:00
|
|
|
|
* CREATE|ATTACH TABLE [IF NOT EXISTS] [db.]name
|
2011-08-18 18:48:00 +00:00
|
|
|
|
* (
|
|
|
|
|
* name1 type1,
|
|
|
|
|
* name2 type2,
|
|
|
|
|
* ...
|
|
|
|
|
* ) ENGINE = engine
|
2011-10-31 06:37:12 +00:00
|
|
|
|
*
|
|
|
|
|
* Или:
|
2012-07-12 20:06:45 +00:00
|
|
|
|
* CREATE|ATTACH TABLE [IF NOT EXISTS] [db.]name AS [db2.]name2 [ENGINE = engine]
|
2011-11-01 15:16:04 +00:00
|
|
|
|
*
|
|
|
|
|
* Или:
|
2012-12-11 20:32:08 +00:00
|
|
|
|
* CREATE|ATTACH TABLE [IF NOT EXISTS] [db.]name AS ENGINE = engine SELECT ...
|
2011-11-05 23:31:19 +00:00
|
|
|
|
*
|
|
|
|
|
* Или:
|
|
|
|
|
* CREATE|ATTACH DATABASE db
|
2014-04-24 18:49:07 +00:00
|
|
|
|
*
|
|
|
|
|
* Или:
|
|
|
|
|
* CREATE|ATTACH [MATERIALIZED] VIEW [IF NOT EXISTS] [db.]name [ENGINE = engine] [POPULATE] AS SELECT ...
|
2011-08-18 18:48:00 +00:00
|
|
|
|
*/
|
|
|
|
|
class ParserCreateQuery : public IParserBase
|
|
|
|
|
{
|
|
|
|
|
protected:
|
2014-03-10 12:25:37 +00:00
|
|
|
|
const char * getName() const { return "CREATE TABLE or ATTACH TABLE query"; }
|
2014-06-12 00:48:56 +00:00
|
|
|
|
bool parseImpl(Pos & pos, Pos end, ASTPtr & node, Expected & expected);
|
2011-08-18 18:48:00 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|