0

我正在尝试更新一分钟前工作正常的表,但现在我遇到了一个过去遇到的错误,这非常不方便。

09:32:57 Copying rows caused a MySQL error 1300:
    Level: Warning
     Code: 1300
  Message: Invalid utf8mb4 character string: '94C494'

有没有什么选项可以让我忽略这些警告?毕竟这只是一个警告,所以 MySQL 仍然有能力继续前进并复制行。

其他解决方案也可以,比如找到表格中的违规值,或者删除无效部分,或者只是为了让我可以改变我的表格,这将是惊人的。

我在谷歌上搜索如何在 MySQL 中查找/替换损坏的 utf8 序列给我带来了这些链接(这不是很有帮助)

我什至尝试搜索十六进制包含无效序列的所有列,但仍然不知何故没有运气

select * from `notifications` 
where hex(`Description`) like '%94C494%' 
or hex(`Title`) like '%94C494%' 
or hex(`NotificationID`) like '%94C494%' 
or hex(`ToUserID`) like '%94C494%' 
or hex(`FromUserID`) like '%94C494%'
or hex(`Link`) like '%94C494%' 
or hex(`Icon`) like '%94C494%';

MySQL 版本为 5.7.18-15-57-log 和 pt-online-schema-change 3.0.8


更奇怪的是,我决定自娱自乐并搜索所有列(不仅仅是 utf8mb4 列),我得到了行!但我得到的唯一行来自我的二进制列?为什么在二进制列中有无效的 utf8 序列很重要?现在我认为这可能是该工具的错误

select * ,hex(`notificationid`), hex(`notificationbid`), hex(`fromuserid`), hex(`touserid`), hex(`title`), hex(`description`), hex(`read`), hex(`datetimeadded`), hex(`link`), hex(`icon`), hex(`shown`), hex(`_linkdescriptionsha256`), hex(`_touseridlinkdescription+sha3-224`)
from `notifications` 
where hex(`notificationid`) like '%94C494%'
or hex(`notificationbid`) like '%94C494%'
or hex(`fromuserid`) like '%94C494%'
or hex(`touserid`) like '%94C494%'
or hex(`title`) like '%94C494%'
or hex(`description`) like '%94C494%'
or hex(`read`) like '%94C494%'
or hex(`datetimeadded`) like '%94C494%'
or hex(`link`) like '%94C494%'
or hex(`icon`) like '%94C494%'
or hex(`shown`) like '%94C494%'
or hex(`_linkdescriptionsha256`) like '%94C494%'
or hex(`_touseridlinkdescription+sha3-224`) like '%94C494%';
4

1 回答 1

0

在与 Percona 支持人员合作解决此问题后,我们最终创建了此票证:https ://jira.percona.com/browse/PT-1528

忽略排序规则问题(或解决此错误)的技巧是将--charset binary标志添加到pt-online-schema-change命令中。

当主键是二进制列并且字符集设置为 utf8(mb4) 或从 MySQL 设置中推断为其中之一时,似乎会发生这种情况。

于 2018-04-09T13:41:13.887 回答