-
Notifications
You must be signed in to change notification settings - Fork 615
Add support for ALTER TABLE DROP INDEX
#1865
New issue
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
Conversation
…DROP INDEX idx_a`
Thanks @vimko! fyi there's a similar PR here for |
@iffyio Indeed, I didn't notice that. Thank you very much for reminding me. |
DROP INDEX idx_a ON table_a
and ALTER TABLE table_a DROP INDEX idx_a
)ALTER TABLE table_a DROP INDEX idx_a
)
ALTER TABLE table_a DROP INDEX idx_a
)ALTER TABLE DROP INDEX
@vimko could you take a look at the cargo failure when you get the chance? |
502ea78
to
3676f6e
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This PR adds support for mysql's drop index:
DROP INDEX idx_a ON table_a
ALTER TABLE table_a DROP INDEX idx_a
Addresses #1863