You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 29, 2018. It is now read-only.
I notice when I use the Openshift MySQL cartridge, that the character set is set to utf8. This is understandable as MySQL really made a mess here, but it really should be utf8mb4 as the utf8 that MySQL talks about is really a MySQL utf8...
I notice when I use the Openshift MySQL cartridge, that the character set is set to
utf8
. This is understandable as MySQL really made a mess here, but it really should beutf8mb4
as theutf8
that MySQL talks about is really a MySQL utf8...Real utf8 has max. 4 bytes per character
MySQL utf8 has only 3 bytes per character and can't encode all of Unicode
If you want full Unicode support (and who doesn't) you should set the character set to utf8mb4 in MySQL.
The text was updated successfully, but these errors were encountered: