Support new mysql8.0 utf8mb4 character and collation sets

https://dev.mysql.com/doc/refman/8.0/en/charset-unicode-sets.html
https://dev.mysql.com/doc/refman/8.0/en/charset-collation-names.html

Change-Id: I5080de7b4b190053f1bcc1c4c815992c9a5889b7
This commit is contained in:
Sam Morrison 2019-06-18 18:32:33 +10:00 committed by Lingxian Kong
parent 7b3483723a
commit 73fc73a346

@ -78,6 +78,7 @@ charset = {"big5": ["big5_chinese_ci", "big5_bin"],
"utf8_vietnamese_ci",
"utf8_general_mysql500_ci"
],
"utf8mb4": ["utf8mb4_0900_ai_ci"],
"ucs2": ["ucs2_general_ci",
"ucs2_bin",
"ucs2_unicode_ci",
@ -293,6 +294,7 @@ collation = {"big5_chinese_ci": "big5",
"utf8_unicode_520_ci": "utf8",
"utf8_vietnamese_ci": "utf8",
"utf8_general_mysql500_ci": "utf8",
"utf8mb4_0900_ai_ci": "utf8mb4",
"ucs2_general_ci": "ucs2",
"ucs2_bin": "ucs2",
"ucs2_unicode_ci": "ucs2",