xnuinside / simple-ddl-parser

Simple DDL Parser to parse SQL (HQL, TSQL, AWS Redshift, BigQuery, Snowflake and other dialects) ddl files to json/python dict with full information about columns: types, defaults, primary keys, etc. & table properties, types, domains, etc.
MIT License
179 stars 40 forks source link

Move inline flag to start of regex #200

Closed slurpyb closed 1 year ago

slurpyb commented 1 year ago

3.11 requires global flags at the start (bpo-47066). See https://github.com/python/cpython/issues/91222

Fixes issue #199 on python 3.11

xnuinside commented 1 year ago

thanks for opening the PR, I will prepare release tonight

xnuinside commented 1 year ago

changes was released in version 0.31.0, thanks for opening the PR!

slurpyb commented 1 year ago

Thanks for the super useful package and my first code contribution on GitHub!