|
2 | 2 | All notable changes to this project will be documented in this file. |
3 | 3 |
|
4 | 4 | ## [Unreleased][unreleased] |
5 | | -### Changed |
6 | | -- Created a `tracer` branch to continue developing the `Tracer` class into something viable. |
7 | 5 |
|
8 | | -## [v0.12.0-beta.1] - 2015-09-29 |
| 6 | +## [v0.11.1] - 2016-01-29 |
| 7 | +### Fixed |
| 8 | +- Refactor to solve the different issues that come from trying to use unquoted reserved words as |
| 9 | +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`). |
| 10 | + |
| 11 | + ``` sql |
| 12 | + select intersects inid, innot notin |
| 13 | + from fromson nots |
| 14 | + where colorwhere IN nots.pon |
| 15 | + INTERSECT |
| 16 | + select suit, tie from pants; |
| 17 | + ``` |
| 18 | + |
| 19 | +## [v0.11.0] - 2015-09-29 |
9 | 20 | ### Changed |
| 21 | +- Created a `tracer` branch to continue developing the `Tracer` class into something viable. |
10 | 22 | - `all` keys removed in all places as it has no effect on query results |
11 | 23 | - function `args` property now always contains an array. when `DISTINCT` is used in function arguments, then a `distinct: true` property is added to the function node. |
12 | 24 | - any property that was previously attached to a node with a value of `null` is no longer included in the AST. this should reduce the size of the AST considerably with useless information. for example, the `with` property of a `SELECT` statement node. |
@@ -431,8 +443,9 @@ All notable changes to this project will be documented in this file. |
431 | 443 | ### Added |
432 | 444 | - First working version of sqlite-parser |
433 | 445 |
|
434 | | -[unreleased]: https://github.com/codeschool/sqlite-parser/compare/v0.12.0-beta.1...HEAD |
435 | | -[v0.12.0-beta.1]: https://github.com/codeschool/sqlite-parser/compare/v0.10.2...v0.12.0-beta.1 |
| 446 | +[unreleased]: https://github.com/codeschool/sqlite-parser/compare/v0.11.1...HEAD |
| 447 | +[v0.11.1]: https://github.com/codeschool/sqlite-parser/compare/v0.11.0...v0.11.1 |
| 448 | +[v0.11.0]: https://github.com/codeschool/sqlite-parser/compare/v0.10.2...v0.11.0 |
436 | 449 | [v0.10.2]: https://github.com/codeschool/sqlite-parser/compare/v0.9.8...v0.10.2 |
437 | 450 | [v0.9.8]: https://github.com/codeschool/sqlite-parser/compare/v0.9.1...v0.9.8 |
438 | 451 | [v0.9.1]: https://github.com/codeschool/sqlite-parser/compare/v0.8.0...v0.9.1 |
|
0 commit comments