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

Release v0.11.2

Pre-release
Pre-release
Compare
Choose a tag to compare
@nwronski nwronski released this 29 Jan 19:48
· 165 commits to master since this release

Fixed

  • Refactor to solve the different issues that come from trying to use unquoted reserved words as
    part of table names, column names, aliases, etc... This also addresses issues that came from certain SQLite keywords being fully contained within other keywords (e.g.: IN is contained in INT which is contained in INTERSECT).

    select intersects inid, innot notin
    from fromson nots
    where colorwhere IN nots.pon
    INTERSECT
    select suit, tie from pants;
  • Whoops! order property of SELECT statements contained an object with a result key that contained the ordering list instead of just containing the ordering list. It should actually look like this instead:

    {
      "order": [
        {
          "type": "expression",
          "variant": "order",
          "expression": {
            "type": "identifier",
            "variant": "column",
            "name": "hats"
          },
          "direction": "asc"
        }
      ]
    }