http://bugs.winehq.org/show_bug.cgi?id=58079
Jeremy Newman jnewman@codeweavers.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |jnewman@codeweavers.com
--- Comment #2 from Jeremy Newman jnewman@codeweavers.com --- All tables should be converted to utf8mb4. Many columns are still in latin1_swedish_ci, and others are in mb3;
For example, we need to do a process like this on the tables:
ALTER TABLE <TABLE> CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; ALTER TABLE <TABLE> CHARACTER SET utf8mb4;
Once this is done, things should work better with character sets.