Skip to content

v0.1.10

Choose a tag to compare

@github-actions github-actions released this 22 Apr 13:51
· 16 commits to master since this release

@questdb/sql-parser v0.1.10

Added

  • 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

npm