http://bugs.winehq.org/show_bug.cgi?id=58079 Jeremy Newman <jnewman(a)codeweavers.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jnewman(a)codeweavers.com --- Comment #2 from Jeremy Newman <jnewman(a)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. -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.