You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.txt
+22Lines changed: 22 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,25 @@
1
+
**v0.24.0**
2
+
3
+
## Fixes:
4
+
5
+
### HQL:
6
+
7
+
1. More then 2 tblproperties now are parsed correctly https://github.com/xnuinside/simple-ddl-parser/pull/104
8
+
9
+
10
+
### Common:
11
+
12
+
2. 'set' in lower case now also parsed validly.
13
+
3. Now names like 'schema', 'database', 'table' can be used as names in CREATE DABASE | SCHEMA | TABLESPACE | DOMAIN | TYPE statements and after INDEX and CONSTRAINT.
14
+
4. Creation of empty tables also parsed correctly (like CREATE Table table;).
15
+
16
+
## New Statements Support:
17
+
18
+
### HQL:
19
+
1. Added support for CLUSTERED BY - https://github.com/xnuinside/simple-ddl-parser/issues/103
20
+
2. Added support for INTO ... BUCKETS
21
+
3. CREATE REMOTE DATABASE | SCHEMA
22
+
1
23
**v0.23.0**
2
24
3
25
Big refactoring: less code complexity & increase code coverage. Radon added to pre-commit hooks.
@@ -388,6 +389,28 @@ for help with debugging & testing support for BigQuery dialect DDLs:
388
389
389
390
390
391
## Changelog
392
+
**v0.24.0**
393
+
394
+
## Fixes:
395
+
396
+
### HQL:
397
+
398
+
1. More then 2 tblproperties now are parsed correctly https://github.com/xnuinside/simple-ddl-parser/pull/104
399
+
400
+
401
+
### Common:
402
+
403
+
2. 'set' in lower case now also parsed validly.
404
+
3. Now names like 'schema', 'database', 'table' can be used as names in CREATE DABASE | SCHEMA | TABLESPACE | DOMAIN | TYPE statements and after INDEX and CONSTRAINT.
405
+
4. Creation of empty tables also parsed correctly (like CREATE Table table;).
406
+
407
+
## New Statements Support:
408
+
409
+
### HQL:
410
+
1. Added support for CLUSTERED BY - https://github.com/xnuinside/simple-ddl-parser/issues/103
411
+
2. Added support for INTO ... BUCKETS
412
+
3. CREATE REMOTE DATABASE | SCHEMA
413
+
391
414
**v0.23.0**
392
415
393
416
Big refactoring: less code complexity & increase code coverage. Radon added to pre-commit hooks.
@@ -447,6 +448,36 @@ for help with debugging & testing support for BigQuery dialect DDLs:
447
448
Changelog
448
449
---------
449
450
451
+
**v0.24.0**
452
+
453
+
Fixes:
454
+
------
455
+
456
+
HQL:
457
+
^^^^
458
+
459
+
460
+
#. More then 2 tblproperties now are parsed correctly https://github.com/xnuinside/simple-ddl-parser/pull/104
461
+
462
+
Common:
463
+
^^^^^^^
464
+
465
+
466
+
#. 'set' in lower case now also parsed validly.
467
+
#. Now names like 'schema', 'database', 'table' can be used as names in CREATE DABASE | SCHEMA | TABLESPACE | DOMAIN | TYPE statements and after INDEX and CONSTRAINT.
468
+
#. Creation of empty tables also parsed correctly (like CREATE Table table;).
469
+
470
+
New Statements Support:
471
+
-----------------------
472
+
473
+
HQL:
474
+
^^^^
475
+
476
+
477
+
#. Added support for CLUSTERED BY - https://github.com/xnuinside/simple-ddl-parser/issues/103
478
+
#. Added support for INTO ... BUCKETS
479
+
#. CREATE REMOTE DATABASE | SCHEMA
480
+
450
481
**v0.23.0**
451
482
452
483
Big refactoring: less code complexity & increase code coverage. Radon added to pre-commit hooks.
Copy file name to clipboardExpand all lines: pyproject.toml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
[tool.poetry]
2
2
name = "simple-ddl-parser"
3
-
version = "0.23.0"
3
+
version = "0.24.0"
4
4
description = "Simple DDL Parser to parse SQL & dialects like HQL, TSQL (MSSQL), Oracle, AWS Redshift, Snowflake, MySQL, PostgreSQL, etc ddl files to json/python dict with full information about columns: types, defaults, primary keys, etc.; sequences, alters, custom types & other entities from ddl."
0 commit comments