Suppose you want to remove auto_increment from 100G table. No matter if it’s InnoDB or MyISAM, you’d usually ALTER TABLE `huge_table` CHANGE `id` `id` int(6) NOT NULL and then wait hours for table rebuild to complete…
Post: InnoDB Full-text Search in MySQL 5.6: Part 2, The Queries!
… MyISAM stopwords, insert them into a table, and configure that table to be our stopword list for InnoDB? This is the table that we’re trying to… going to be people who believe that switching to InnoDB FTS is simply a matter of upgrading to 5.6 and running ALTER TABLE foo ENGINE=InnoDB…

