We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc29f53 commit ea2f786Copy full SHA for ea2f786
src/Query/Parser.php
@@ -2527,7 +2527,6 @@ public function SimpleConditionalExpression(): AST\ExistsExpression|AST\BetweenE
2527
}
2528
2529
// 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) {
2531
if ($token->type === TokenType::T_OPEN_PARENTHESIS && $peek->type !== TokenType::T_SELECT) {
2532
$tokenAfterParenthesis = $this->peekBeyondClosingParenthesis(false);
2533
0 commit comments