Consistient codestyle

This commit is contained in:
NeZeD [Mac Pro] 2019-02-02 15:18:30 +03:00
parent d605c9c104
commit 764cf232a0
No known key found for this signature in database
GPG Key ID: 15AF581A8B5439D7

View File

@ -231,7 +231,7 @@ bool ParserBetweenExpression::parseImpl(Pos & pos, ASTPtr & node, Expected & exp
/// For the expression (subject BETWEEN left AND right) /// For the expression (subject BETWEEN left AND right)
/// create an AST the same as for (subject> = left AND subject <= right). /// create an AST the same as for (subject> = left AND subject <= right).
ParserKeyword s_not{"NOT"}; ParserKeyword s_not("NOT");
ParserKeyword s_between("BETWEEN"); ParserKeyword s_between("BETWEEN");
ParserKeyword s_and("AND"); ParserKeyword s_and("AND");