You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
explain ast
SELECTnumber, rank() OVER ( PARTITION BY number % 3ORDER BYnumber )
FROM numbers(1000000) wherenumber>10andnumber>9andnumber>8;
Extra parentheses in sql format
-[ EXPLAIN ]-----------------------------------
SELECT
number,
rank() OVER (( PARTITION BY number % 3 ORDER BY number ))
FROM
numbers(1000000)
WHERE
(
(
(number > 10)
AND (number > 9)
)
AND (number > 8)
)
How to Reproduce?
No response
Are you willing to submit PR?
Yes I am willing to submit a PR!
The text was updated successfully, but these errors were encountered:
Search before asking
Version
9c2c3dd
What's Wrong?
Extra parentheses in sql format
How to Reproduce?
No response
Are you willing to submit PR?
The text was updated successfully, but these errors were encountered: