simple-ddl-parser icon indicating copy to clipboard operation
simple-ddl-parser copied to clipboard

Oracle global temporary table no supported

Open ancc opened this issue 2 years ago • 1 comments

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

ancc avatar Jan 09 '23 15:01 ancc

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

xnuinside avatar Jan 09 '23 15:01 xnuinside