…unique or a foreign key. This is the output of our tool when run on the same table…duplicate-key-checker, but it does not detect all cases. For example: mysql> alter table test… this duplicate clustered index, execute: ALTER TABLE `test`.`test` DROP INDEX `redundant`, ADD INDEX `redundant` (`col2`); #…
Post: InnoDB Full-text Search in MySQL 5.6 (part 1)
…a unique key as they suggest, your data won’t load due to unique key …dropping FT indexes, it’s entirely possible to DROP multiple FT indexes with InnoDB in the same ALTER TABLE… happens: mysql> alter table dir_test_innodb ADD FULLTEXT KEY (full_name, details), ADD FULLTEXT KEY (details); ERROR…

