Skip to content

Commit 89bb8ab

Browse files
committed
Update changelog for v11.3.0
1 parent cb6e69d commit 89bb8ab

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

CHANGELOG.md

+33
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,39 @@
11
Changelog
22
=========
33

4+
v11.3.0
5+
------
6+
7+
Changes:
8+
9+
- Breaking/Improvement: Fixed transpilation of the division ("/") operator, because some dialects do integer division while others do float division. For example, "a / b" will now be transpiled to "CAST(a AS DOUBLE PRECISION) / b" for Snowflake -> Postgres, and to "CAST(a / b AS INT)" for Postgres -> Snowflake.
10+
11+
- New: Added support for the COMMENT ON statement.
12+
13+
- New: Added support for old (+) JOIN syntax (Oracle).
14+
15+
- New: Added "root" helper method on Expression.
16+
17+
- New: Added "meta" property on Expression.
18+
19+
- Improvement: Refactored parsing of ALTER TABLE so it's easily extensible.
20+
21+
- Improvement: Merging subquery to out of scope join bug fixed.
22+
23+
- Improvement: Tokenize Jinja comments as comments.
24+
25+
- Improvement: Refactor POST_CREATE and POST_EXPRESSION properties.
26+
27+
- Improvement: Fix line numbers for strings that contain multi-line comments.
28+
29+
- Improvement: Fix aliasing for pivot/unpivot expressions.
30+
31+
- Improvement: Enhance AST diff (https://github.com/tobymao/sqlglot/commit/2093626e798fc12124fdf1f25ea63662f2953966).
32+
33+
- Improvement: Better python typing.
34+
35+
- Improvement: Added support for is_star helper on exp.Select.
36+
437
v11.2.0
538
------
639

0 commit comments

Comments
 (0)