Skip to content

Commit ea2f786

Browse files
committed
Update Parser.php
1 parent dc29f53 commit ea2f786

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/Query/Parser.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2527,7 +2527,6 @@ public function SimpleConditionalExpression(): AST\ExistsExpression|AST\BetweenE
25272527
}
25282528

25292529
// Handle arithmetic expressions enclosed in parentheses before an IN operator (e.g., (u.id + 1) IN (...))
2530-
if ($token->type === TokenType::T_OPEN_PARENTHESIS && $peek !== null && $peek->type !== TokenType::T_SELECT) {
25312530
if ($token->type === TokenType::T_OPEN_PARENTHESIS && $peek->type !== TokenType::T_SELECT) {
25322531
$tokenAfterParenthesis = $this->peekBeyondClosingParenthesis(false);
25332532

0 commit comments

Comments
 (0)