We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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 table test (test_time timestamp(3) with time zone);").run()
result is empty list.
python version 3.9.5 simple-ddl-parser==0.29.1
The text was updated successfully, but these errors were encountered:
@ancc , hm,
simple-ddl-parser/tests/test_alter_statements.py
Line 1446 in 3d0ab28
Sorry, something went wrong.
I have the same problem with sql dumped from a Postgres schema used by a Django app. The result is an empty list.
the_column timestamp with time zone
It was fixed in similar issue relative to PostgreSQL #250. Fix was released in version 1.3.1.
No branches or pull requests
Following create table statement is not recognized by the parser, which is valid statement for Oracle database.
result is empty list.
python version 3.9.5
simple-ddl-parser==0.29.1
The text was updated successfully, but these errors were encountered: