The code from simple_ddl_parser import ddl_parser sql = "CREATE TABLE public.test (date_updated timestamp with time zone);" result = ddl_parser.DDLParser(sql).run() print(result) results in [] This type is used by Directus CMS, so I can'...
name = "simple-ddl-parser" version = "1.5.0" version = "1.5.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...
I think both parsing should be able to parse the field information. Additional context python==3.11 simple-ddl-parser==0.31.0
1. Fix for https://github.com/xnuinside/simple-ddl-parser/issues/177 ### Imporvements ### Improvements 1. Added support for Oracle 2 component size for types, like '30 CHAR'. From https://github.com/xnuinside/simple-ddl-parser/issues/176 @@ -52,8 +54,8 @@ It shows in column ...
1. Fix for https://github.com/xnuinside/simple-ddl-parser/issues/177 1. Added support for Oracle 2 component size for types, like '30 CHAR'. From https://github.com/xnuinside/simple-ddl-parser/issues/176Assets 2 Source code (zip) 2023-01-07T14:43:54Z Source code (tar.gz) ...
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. - Merge pull
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. - Compare ·
name = "simple-ddl-parser" version = "0.26.1" version = "0.26.2" 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, defaul...
It will be released in version 0.31.1 together with your PR. xnuinside closed this as completed Nov 5, 2023 Owner xnuinside commented Nov 5, 2023 @PBalsdon 0.31.1 was released https://pypi.org/project/simple-ddl-parser/Sign up for free to join this conversation on GitHub. Already ...
Hello create table event_types ( id number constraint event_types_id_pk primary key ) ; and create table event_types ( id number generated by default on null as identity ) ; unfortunately return empty array those could also be written li...