-
-
Notifications
You must be signed in to change notification settings - Fork 557
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
8.0 字符集设置为utf8,会出现Unknown charset utf8mb3问题 #531
Comments
这个issue没有人解决么 |
我也遇到这个问题了,使用v1.3.0最新版本的goInception,阿里云的RDS默认设置 提交建表check就会报Unknown charset utf8mb3 |
fix: 修复MySQL v8.0当database字符集为utf8mb3时审核失败的问题(#531)
已修复. 请升级到版本 v1.3.0-68. |
character_set_database设置为utf8mb4, create table test ( |
mysql 8.0.32 出现和楼上一样的问题 另外这个参数为什么没有生效, debug日志粒度太粗也没看出有什么问题
|
session/common.go var charSets = map[string]int{
"armscii8": 1,
"ascii": 1,
"big5": 2,
"binary": 1,
"cp1250": 1,
"cp1251": 1,
"cp1256": 1,
"cp1257": 1,
"cp850": 1,
"cp852": 1,
"cp866": 1,
"cp932": 2,
"dec8": 1,
"eucjpms": 3,
"euckr": 2,
"gb18030": 4,
"gb2312": 2,
"gbk": 2,
"geostd8": 1,
"greek": 1,
"hebrew": 1,
"hp8": 1,
"keybcs2": 1,
"koi8r": 1,
"koi8u": 1,
"latin1": 1,
"latin2": 1,
"latin5": 1,
"latin7": 1,
"macce": 1,
"macroman": 1,
"sjis": 2,
"swe7": 1,
"tis620": 1,
"ucs2": 2,
"ujis": 3,
"utf16": 4,
"utf16le": 4,
"utf32": 4,
"utf8": 3,
"utf8mb3": 3,
"utf8mb4": 4,
} |
请升级到 |
hao,我试试 |
由于此问题没有最近的活动,因此已被自动标记为陈旧。如果没有进一步的活动,会作为不活跃issue关闭。感谢你对本项目的贡献。 This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
描述
在进行8.0的数据变更时,当设置character_set_server=utf8, check时出现 Unknown charset utf8mb3
重现
goinctpion 使用默认的 config配置(未更改任何项)
环境
The text was updated successfully, but these errors were encountered: