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
create index myindex on mytable (mycol desc) is accepted, but the desc is not added to the list of index specifications.
create index myindex on mytable (mycol desc)
desc
The asc/desc specification should be added to the list of index specifications in the parsed object model.
CreateIndex#getIndex()#getIndexSpec()
The text was updated successfully, but these errors were encountered:
JSQLParser#650 parse asc/desc specification
7ba766f
JSQLParser#650 fixed npe
82e5271
already solved
Sorry, something went wrong.
No branches or pull requests
Actual Behavior
create index myindex on mytable (mycol desc)
is accepted, but thedesc
is not added to the list of index specifications.Expected Behavior
The asc/desc specification should be added to the list of index specifications in the parsed object model.
Steps to Reproduce the Problem
create index myindex on mytable (mycol desc)
CreateIndex#getIndex()#getIndexSpec()
returns nullSpecifications
The text was updated successfully, but these errors were encountered: