Skip to content
This repository has been archived by the owner on Jul 15, 2021. It is now read-only.

Release v0.12.3

Compare
Choose a tag to compare
@nwronski nwronski released this 03 Feb 00:20
· 165 commits to master since this release

Fixed

  • Added missing binary division operator so that things like this will now correctly parse.

    select CAST(4 / 9 AS DECIMAL(5,2)) as hat
    from pants;
  • Fixed BETWEEN expression grammar to remove bad recursion.

    select num
    from nums n
    where num between 100 AND 200;
  • Fixed ORDER BY grammar to allow more than two ordering expressions.

    select color, size, shape, name
    from eggs
    order by color asc, size desc, shape asc