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
"ROW_NUMBER() OVER (PARTITION BY col1, col2) rn" will be parsed as <Function 'row_number'> + <Keyword 'OVER'> + <Identifier '(PARTITION BY col1, col2)'>, which is not desirable. I'll try to see if I can extend or monkey patch sqlparse by grouping these together to a a new 'Window' tokenlist.
Now row_number() OVER ... and rank() OVER ... are handled. But window function like max(col) OVER ..., sum(col1) OVER ... will get wrong result.
The text was updated successfully, but these errors were encountered: