This repository has been archived by the owner on Jul 15, 2021. It is now read-only.
Release v0.12.2
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 inINT
which is contained inINTERSECT
).select intersects inid, innot notin from fromson nots where colorwhere IN nots.pon INTERSECT select suit, tie from pants;
-
Whoops!
order
property ofSELECT
statements contained an object with aresult
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" } ] }