simple-ddl-parser
simple-ddl-parser copied to clipboard
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....
**Describe the bug** I'm trying to parse PostgreSQL DDL to BigQuery schema. But the output content is unexpected format. **To Reproduce** I followed the instruction and example on README.md, and...
**Describe the bug** Here is a bug with MySQL composite index. There is the first column of index is recorded, but miss the following columns. **To Reproduce** Steps to reproduce...
Sure, here is the detailed description of the issue for your problem statement: **Issue Description:** When using the DDLParser in Python with the provided code snippet, the parser is unable...
A snowflake DDL CREATE TABLE test_table ( id INT, name STRING ) WITH ROW ACCESS POLICY my_policy; will not parse and return [] if you remove with row access policy...
**Describe the bug** When this data is parsed the table "`student`" is not returned by the parsed output. DDL = ```sql CREATE TABLE `department` ( `dept_name` varchar(20) NOT NULL, `building`...