Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

micro release #226

Merged
merged 1 commit into from
Jan 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.

Loading