CDC报错:invalid value null used for required field "null"
原因:数据库ceate_time时间字段设置为not null ,但是没有设置default值
解决办法:1、修改ceate_time字段可以为null,即去掉
`create_time` datetime NOT NULL 中的 nut null
2、设置
`create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP