drift/sqlparser/CHANGELOG.md

34 lines
1.2 KiB
Markdown
Raw Normal View History

## unreleased
2019-10-23 09:03:24 -07:00
- Support common table expressions
- Handle special `rowid`, `oid`, `__rowid__` references
- Support references to `sqlite_master` and `sqlite_sequence` tables
2019-09-25 11:19:39 -07:00
## 0.3.0
- parse compound select statements
- scan comment tokens
- experimental auto-complete engine (only supports a tiny subset based on the grammar only)
- some features that are specific to moor
__0.3.0+1__: Accept `\r` characters as whitespace
2019-08-22 03:27:39 -07:00
## 0.2.0
- Parse `CREATE TABLE` statements
- Extract schema information from parsed create table statements with `SchemaFromCreateTable`.
## 0.1.2
- parse `COLLATE` expressions
- fix wrong order in parsed `LIMIT` clauses
## 0.1.1
Attempt to recognize when a bound variable should be an array (eg. in `WHERE x IN ?`).
Also fixes a number of parsing bugs:
- Parses tuples, proper type resolution for `IN` expressions
- Don't resolve references to tables that don't appear in the surrounding statement.
- Parse joins without any additional operator, e.g. `table1 JOIN table2` instead of
`table1 CROSS JOIN table2`.
- Parser now complains when parsing a query doesn't fully consume the input
## 0.1.0
2019-07-01 06:04:17 -07:00
Initial version, can parse most statements but not `DELETE`, common table expressions and other
advanced features.