Skip to content

Parser Improvements & Fixes + Error Docs Hyperlinks

Choose a tag to compare

@sbdchd sbdchd released this 27 May 23:32
· 21 commits to master since this release
bc2ff90

Added

  • parser: validation for default usages (#1175)

    -- ok
    insert into t values (default);
    -- err
    select default;
  • linter: setup hyperlinks for rule names in terminal (#1174)

    If your terminal supports it, then clicking on the rule name will navigate
    you to the docs.

Fixed

  • fmt: upgrade tiny_pretty to latest (#1173)

    We no longer wrap statements unless necessary.

  • parser: fix parsing period column (#1172)

    previously we'd error on:

    create table t (
      symbol text,
      period text,
      year int,
      quarter int,
      primary key (symbol, period, year, quarter)
    );