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

Commit cc1ffd6

Browse files
committed
Merge branch 'master' into tracer
# Conflicts: # CHANGELOG.md # lib/parser.js
2 parents fe241b1 + 352ff1a commit cc1ffd6

File tree

3 files changed

+56
-11
lines changed

3 files changed

+56
-11
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,25 @@ All notable changes to this project will be documented in this file.
55
### Fixed
66
- Added missing binary division operator so that things like this will now correctly parse.
77

8+
``` sql
9+
select CAST(4 / 9 AS DECIMAL(5,2)) as hat
10+
from pants;
11+
```
12+
- Fixed `BETWEEN` expression grammar to remove bad recursion.
13+
14+
``` sql
15+
select num
16+
from nums n
17+
where num between 100 AND 200;
18+
```
19+
- Fixed `ORDER BY` grammar to allow more than two ordering expressions.
20+
21+
``` sql
22+
select color, size, shape, name
23+
from eggs
24+
order by color asc, size desc, shape asc
25+
```
26+
827
## [v0.11.2] - 2016-01-29
928
### Fixed
1029
- Refactor to solve the different issues that come from trying to use unquoted reserved words as

0 commit comments

Comments
 (0)