… the values from original table corrected using the trick: INSERT INTO tmp SELECT … CONVERT(CONVERT(column USING binary) USING utf8) … FROM table Second you could ALTER… run an update which would decode it once. The corresponding CONVERT()s sequence is somewhat more tricky but I believe that…
Post: InnoDB Full-text Search in MySQL 5.6: Part 2, The Queries!
…` ( `value` varchar(18) NOT NULL DEFAULT ” ) ENGINE=MEMORY DEFAULT CHARSET=utf8 The docs tell us that we need to create an…) NOT NULL DEFAULT ” ) ENGINE=InnoDB DEFAULT CHARSET=utf8 But, when we try to use this table, here’s what comes back: mysql… take the MyISAM full-text parser code, convert it to a plugin, and use it for InnoDB FT indexes where you’re…

