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
I'm trying to parse a sizeable DDL script with the primary key detached in separate alter table statements
alter table
alter table MY_TABLE add constraint PK_MY_TABLE primary key (DATETIME, REGIONID) using index tablespace SOME_TABLE_SPACE;
I notice it picks up the additional indexes, but at the moment simple-ddl-parser does not pick up the primary key when it's added in this way.
simple-ddl-parser
The text was updated successfully, but these errors were encountered:
hello, sorry for delay without answer ) I thought this month will never share to me any time to fix issues.. but I released 0.26.0 with fix, test: https://github.com/xnuinside/simple-ddl-parser/blob/main/tests/test_alter_statements.py#L1718. Sorry one more time for the delay, feel free to open PR if you will find any new issue
Sorry, something went wrong.
No branches or pull requests
I'm trying to parse a sizeable DDL script with the primary key detached in separate
alter table
statementsI notice it picks up the additional indexes, but at the moment
simple-ddl-parser
does not pick up the primary key when it's added in this way.The text was updated successfully, but these errors were encountered: