Details
-
Type: Bug
-
Status: Closed
-
Priority: Major
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 5.5.2
-
Component/s: None
-
Labels:None
Description
It was reported that errors are encountered on some systems when using the syntax
CREATE UNIQUE INDEX `indexname` ON `tablename` ...
And
DROP INDEX `indexname` ON `tablename`
Instead we should use
ALTER TABLE `tablename` DROP INDEX `indexname`
And
ALTER TABLE `tablename` ADD UNIQUE INDEX `indexname` ...