Releases: shinichi-takii/ddlparse
Releases · shinichi-takii/ddlparse
1.2.3
Changes
- Fix parse error for MySQL DDL with
FOREIGN KEY
. - Fix not completely parsed with block comments.
1.2.2
Changes
- Fix FutureWarning of Python 3.7.
- Add supports PostgreSQL data type.
UUID
- Fix parse
DEFAULT
value.- Add parse regex of
DEFAULT
value.
- Add parse regex of
1.2.1
Changes
- Add supports for Python 3.7.
- Pass Python 3.7 test.
- Add supports PostgreSQL data type.
CHARACTER VARYING
JSON
- Array type
- Fix parse
DEFAULT
value.- Add decimal point to
DEFAULT
parse character.
- Add decimal point to
1.2.0
Changes
- Add
DdlParseTable.to_bigquery_ddl
function. (#20)- BigQuery DDL (CREATE TABLE) statement generate function.
- Add
DdlParseColumn.bigquery_legacy_data_type
property. (#21)- Get BigQuery Legacy SQL data property.
- Alias of
DdlParseColumn.bigquery_data_type
property.
- Add
DdlParseColumn.bigquery_standard_data_type
property. (#22)- Get BigQuery Standard SQL data property.
1.1.3
1.1.2
1.1.1
1.1.0
1.0.2
Changes
- enhancement
ddlparse.py
: Exclude unused module.example.py
: Modified comment.README.md
: Miner fix.
1.0.1
Changes
- enhancement
DdlParseColumn.bigquery_data_type
property logicexample.py
add parse code