Skip to content

Commit

Permalink
micro release
Browse files Browse the repository at this point in the history
  • Loading branch information
xnuinside committed Jan 7, 2024
1 parent b0c0afb commit e9d09f5
Show file tree
Hide file tree
Showing 6 changed files with 1,337 additions and 1,322 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
**v0.32.1**
### Minor Fixes
1. Removed debug print

**v0.32.0**

### Improvements
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -482,6 +482,10 @@ for help with debugging & testing support for BigQuery dialect DDLs:


## Changelog
**v0.32.1**
### Minor Fixes
1. Removed debug print

**v0.32.0**

### Improvements
Expand Down
8 changes: 8 additions & 0 deletions docs/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -544,6 +544,14 @@ for help with debugging & testing support for BigQuery dialect DDLs:
Changelog
---------

**v0.32.1**

Minor Fixes
^^^^^^^^^^^


#. Removed debug print

**v0.32.0**

Improvements
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "simple-ddl-parser"
version = "0.32.0"
version = "0.32.1"
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."
authors = ["Iuliia Volkova <[email protected]>"]
license = "MIT"
Expand Down
1 change: 0 additions & 1 deletion simple_ddl_parser/output/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ def add_index_to_table(self, statement: Dict) -> None:

def add_alter_to_table(self, statement: Dict) -> None:
"""add 'alter' statement to the table"""
print(statement)
target_table = self.get_table_from_tables_data(
statement["schema"], statement["alter_table_name"]
)
Expand Down
2,640 changes: 1,320 additions & 1,320 deletions simple_ddl_parser/parsetab.py

Large diffs are not rendered by default.

0 comments on commit e9d09f5

Please sign in to comment.