Char类型问题

StarRocks 版本3.2.8 非存算分离

sr-flink-connector 1.2.9_flink-1.18

问题1:
用flink写入char(m)的字段,当值超过m长度的时候报错是该字段为NULL,而不是字段length too long类似的错误
或者我使用 Stream Load事务提交方式 写入超过m长度的内容 报错也是NULL,这种报错有明显歧义

问题2:
测试insert into 方式写入char(m)类型,当我insert into方式写入长度<m的数据同样能成功写入,char不再是定长字符串了,小于等于m的都能写入
当写入长度大于m的时候报错,和connector中报错内容不同

Error: String 'CHHHH'(length=5) is too long. The max length of 'country' is 3. Row:...

检查下是否开启严格模式 https://docs.starrocks.io/zh/docs/loading/load_concept/strict_mode/