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

Oracle global temporary table no supported #182

Closed ancc closed 3 months ago

ancc commented 1 year ago

Following create table statement is not recognized by the parser, which is valid statement for Oracle database.

from simple_ddl_parser import DDLParser
DDLParser("create global temporary table test (id number);").run()

result is empty list.

python version 3.9.5 simple-ddl-parser==0.29.1

xnuinside commented 1 year ago

create global temporary table - not supported yet, I will add it, thanks for opening the issue!

xnuinside commented 3 months ago

Added in version 1.4.0 - https://github.com/xnuinside/simple-ddl-parser/pull/252. I will close this issue. If needed anything else, feel free to open the new one!