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
Named WINDOW clause: SELECT ... WINDOW w AS (...) with multiple windows, window inheritance, and inline-plus-named mixing. Matches QuestDB's Java parser (introduced in questdb/questdb#6746). #24
Trailing comma accepted in select lists: SELECT a, b, FROM t now parses cleanly. #24
Fixed
Named window reference in OVER w no longer loses the window name when round-tripping through the AST and toSql. #24
Autocomplete no longer hangs on malformed input (unbalanced parens, unsupported clauses, stray terminators). A path-count budget in the content-assist DFS aborts pathological searches in <200ms and returns no suggestions, instead of freezing the UI. #24
WINDOW keyword now shows up in autocomplete as a standalone clause keyword alongside WINDOW JOIN after a FROM clause. #24