This commit is contained in:
Nikita Vasilev 2019-01-03 11:10:25 +03:00
parent b2da3a34df
commit 69052b3fc0
2 changed files with 1 additions and 2 deletions

View File

@ -22,7 +22,6 @@ public:
IAST * expr;
ASTFunction * type;
Field granularity;
//TODO: params (GRANULARITY number or SETTINGS a=b, c=d, ..)?
/** Get the text that identifies this element. */
String getID(char) const override { return "Index"; }

View File

@ -100,7 +100,7 @@ bool ParserIndexDeclaration::parseImpl(Pos & pos, ASTPtr & node, Expected & expe
ParserIdentifier name_p;
ParserIdentifierWithOptionalParameters ident_with_optional_params_p;
ParserExpression expression_p;
ParserLiteral granularity_p;
ParserUnsignedInteger granularity_p;
ASTPtr name;
ASTPtr expr;