mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 08:32:02 +00:00
33 lines
954 B
C++
33 lines
954 B
C++
#pragma once
|
|
|
|
#include <Parsers/IParserBase.h>
|
|
#include <Parsers/IAST_fwd.h>
|
|
#include <Parsers/CommonParsers.h>
|
|
#include <Parsers/ASTDictionaryAttributeDeclaration.h>
|
|
#include <Parsers/ASTIdentifier.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
/// Parser for dictionary attribute declaration, similar with parser for table
|
|
/// column, but attributes has less parameters. Produces
|
|
/// ASTDictionaryAttributeDeclaration.
|
|
class ParserDictionaryAttributeDeclaration : public IParserBase
|
|
{
|
|
protected:
|
|
const char * getName() const override { return "attribute declaration"; }
|
|
|
|
bool parseImpl(Pos & pos, ASTPtr & node, Expected & expected) override;
|
|
};
|
|
|
|
|
|
/// Creates ASTExpressionList consists of dictionary attributes declaration.
|
|
class ParserDictionaryAttributeDeclarationList : public IParserBase
|
|
{
|
|
protected:
|
|
const char * getName() const override{ return "attribute declaration list"; }
|
|
bool parseImpl(Pos & pos, ASTPtr & node, Expected & expected) override;
|
|
};
|
|
|
|
}
|