1、 DB::Exception: Nested type Array(String) cannot be inside Nullable type: While processing splitByChar(',', par_value)
注释:使用splitByChar时,传入的字段不能是Nullable类型
解决方法:splitByChar(',', coalesce(par_value,''))
2、运行:alter table map_yx_task_notice delete where id>=10000,报错
Code: 48. DB::Exception: Table engine MySQL doesn't support mutations. (NOT_IMPLEMENTED) (version 22.7.1.2484 (official build))
原因:不支持映射表删除数据,如果非要删除数据,需要从源头删除。