Update ExpressionListParsers.cpp

This commit is contained in:
Kseniia Sumarokova 2021-12-21 12:39:31 +03:00 committed by GitHub
parent c343623fa4
commit de7a5dd1e6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -402,7 +402,7 @@ bool ParserVariableArityOperatorList::parseImpl(Pos & pos, ASTPtr & node, Expect
bool ParserBetweenExpression::parseImpl(Pos & pos, ASTPtr & node, Expected & expected)
{
/// For the expression (subject [NOT] 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_between("BETWEEN");