@@ -9,11 +9,38 @@ Given that the parser produces a typed AST, any changes to the AST will technica
9
9
Check https://github.com/sqlparser-rs/sqlparser-rs/commits/main for undocumented changes.
10
10
11
11
12
- ## [ 0.17 .0] 2022-05-09
12
+ ## [ 0.18 .0] 2022-06-06
13
13
14
14
### Added
15
15
16
+ * Support ` CLOSE ` (cursors) (#515 ) - Thanks @ovr
17
+ * Support ` DECLARE ` (cursors) (#509 ) - Thanks @ovr
18
+ * Support ` FETCH ` (cursors) (#510 ) - Thanks @ovr
19
+ * Support ` DATETIME ` keyword (#512 ) - Thanks @komukomo
20
+ * Support ` UNNEST ` as a table factor (#493 ) - Thanks @sivchari
21
+ * Support ` CREATE FUNCTION ` (hive flavor) (#496 ) - Thanks @mobuchowski
22
+ * Support placeholders (` $ ` or ` ? ` ) in ` LIMIT ` clause (#494 ) - Thanks @step-baby
23
+ * Support escaped string literals (PostgreSQL) (#502 ) - Thanks @ovr
24
+ * Support ` IS TRUE ` and ` IS FALSE ` (#499 ) - Thanks @ovr
25
+ * Support ` DISCARD [ALL | PLANS | SEQUENCES | TEMPORARY | TEMP] ` (#500 ) - Thanks @gandronchik
26
+ * Support ` array<..> ` HIVE data types (#491 ) - Thanks @mobuchowski
27
+ * Support ` SET ` values that begin with ` - ` #495 - Thanks @mobuchowski
28
+ * Support unicode whitespace (#482 ) - Thanks @alexsatori
29
+ * Support ` BigQuery ` dialect (#490 ) - Thanks @komukomo
30
+
31
+ ### Changed:
32
+ * Add docs for MapAccess (#489 ) - Thanks @alamb
33
+ * Rename ` ArrayIndex::indexs ` to ` ArrayIndex::indexes ` (#492 ) - Thanks @alamb
34
+
35
+ ### Fixed:
36
+ * Fix escaping of trailing quote in quoted identifiers (#505 ) - Thanks @razzolini-qpq
37
+ * Fix parsing of ` COLLATE ` after parentheses in expressions (#507 ) - Thanks @razzolini-qpq
38
+ * Distinguish tables and nullary functions in ` FROM ` (#506 ) - Thanks @razzolini-qpq
39
+ * Fix ` MERGE INTO ` semicolon handling (#508 ) - Thanks @mskrzypkows
40
+
41
+ ## [ 0.17.0] 2022-05-09
16
42
43
+ ### Added
17
44
18
45
* Support ` # ` as first character in field name for ` RedShift ` dialect (#485 ) - Thanks @yuval-illumex
19
46
* Support for postgres composite types (#466 ) - Thanks @poonai
0 commit comments