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
Dropping and adding the same index should happen in two separated queries.
Example:
ALTER TABLE `x` [..], DROP INDEX `y` ON `x`; ALTER TABLE `x` ADD INDEX `y` (`k`) USING BTREE;
Plus, there should not be the ON clause #49.
ON
The text was updated successfully, but these errors were encountered:
Fix dropping indexes
da029de
Indexes dropped from an ALTER TABLE statement don't use the `ON` clause. This should fix mmatuson/SchemaSync#49 mmatuson/SchemaSync#50 and mmatuson/SchemaSync#51
No branches or pull requests
Dropping and adding the same index should happen in two separated queries.
Example:
Plus, there should not be the
ON
clause #49.The text was updated successfully, but these errors were encountered: