danfengcao / binlog2sql

Parse MySQL binlog to SQL you want
GNU General Public License v3.0
3.32k stars 1.04k forks source link

不能恢复数据类型 bit 的数据 #62

Open rolser opened 4 years ago

rolser commented 4 years ago

不能恢复数据类型 bit 的数据,mysqldump 导出 数据可以恢复 bit 类型数据。 INSERT INTO ai_playerbot_names VALUES (1,'Cuan',255,65535,65535,4294967295,_binary '\0',_binary '\0'),(2,'Ilit',255,65535,65535,4294967295,_binary '\0',_binary '\0');

mysqldump 将 bit 前面加了 _binary '\0'

michael-liumh commented 3 years ago

可以将 binary 转成十六进制值,我改了一版,已经支持了,你可以试试: https://github.com/michael-liumh/binlog2sql.git