This repository was archived by the owner on Jul 15, 2021. It is now read-only.
Release v0.11.3
Pre-release
Pre-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
BETWEENexpression grammar to remove bad recursion.select num from nums n where num between 100 AND 200;
-
Fixed
ORDER BYgrammar to allow more than two ordering expressions.select color, size, shape, name from eggs order by color asc, size desc, shape asc