@@ -9,6 +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
13
+
14
+ ### Added
15
+
16
+
17
+
18
+ * Support ` # ` as first character in field name for ` RedShift ` dialect (#485 ) - Thanks @yuval-illumex
19
+ * Support for postgres composite types (#466 ) - Thanks @poonai
20
+ * Support ` TABLE ` keyword with SELECT INTO (#487 ) - Thanks @MazterQyou
21
+ * Support ` ANY ` /` ALL ` operators (#477 ) - Thanks @ovr
22
+ * Support ` ArrayIndex ` in ` GenericDialect ` (#480 ) - Thanks @ovr
23
+ * Support ` Redshift ` dialect, handle square brackets properly (#471 ) - Thanks @mskrzypkows
24
+ * Support ` KILL ` statement (#479 ) - Thanks @ovr
25
+ * Support ` QUALIFY ` clause on ` SELECT ` for ` Snowflake ` dialect (#465 ) - Thanks @mobuchowski
26
+ * Support ` POSITION(x IN y) ` function syntax (#463 ) @yuval-illumex
27
+ * Support ` global ` ,` local ` , ` on commit ` for ` create temporary table ` (#456 ) - Thanks @gandronchik
28
+ * Support ` NVARCHAR ` data type (#462 ) - Thanks @yuval-illumex
29
+ * Support for postgres json operators ` -> ` , ` ->> ` , ` #> ` , and ` #>> ` (#458 ) - Thanks @poonai
30
+ * Support ` SET ROLE ` statement (#455 ) - Thanks @slhmy
31
+
32
+ ### Changed:
33
+ * Improve docstrings for ` KILL ` statement (#481 ) - Thanks @alamb
34
+ * Add negative tests for ` POSITION ` (#469 ) - Thanks @alamb
35
+ * Add negative tests for ` IN ` parsing (#468 ) - Thanks @alamb
36
+ * Suppport table names (as well as subqueries) as source in ` MERGE ` statements (#483 ) - Thanks @mskrzypkows
37
+
38
+
39
+ ### Fixed:
40
+ * ` INTO ` keyword is optional for ` INSERT ` , ` MERGE ` (#473 ) - Thanks @mobuchowski
41
+ * Support ` IS TRUE ` and ` IS FALSE ` expressions in boolean filter (#474 ) - Thanks @yuval-illumex
42
+ * Support fully qualified object names in ` SET VARIABLE ` (#484 ) - Thanks mobuchowski
43
+
12
44
## [ 0.16.0] 2022-04-03
13
45
14
46
### Added
@@ -65,8 +97,6 @@ Check https://github.com/sqlparser-rs/sqlparser-rs/commits/main for undocumented
65
97
* export all methods of parser (#397 ) - Thanks @neverchanje !
66
98
* Clarify maintenance status on README (#416 ) - @alamb
67
99
68
- @panarch
69
-
70
100
### Fixed
71
101
* Fix new clippy errors (#412 ) - @alamb
72
102
* Fix panic with ` GRANT/REVOKE ` in ` CONNECT ` , ` CREATE ` , ` EXECUTE ` or ` TEMPORARY ` - Thanks @evgenyx00
0 commit comments