We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
使用MySQL 表作为源头表,表内有一个deciaml 字段 增量 同步到 starrock表中,对应的字段为null 期望:不能为空
The text was updated successfully, but these errors were encountered:
已经修改:qlangtech/chunjun@a33ac8b
添加对DecimalData的 fastjson 序列化映射:
static { com.alibaba.fastjson.serializer.ObjectSerializer decimalSerializer = new ObjectSerializer() { @Override public void write(JSONSerializer serializer, Object object, Object fieldName, Type fieldType, int features) throws IOException { try { DecimalData value = (DecimalData) object; Objects.requireNonNull(value, "callable of " + fieldName + " can not be null"); serializer.write(value.toString()); } catch (Exception e) { throw new IOException(e); } } }; SerializeConfig.globalInstance.put(DecimalData.class, decimalSerializer); }
Sorry, something went wrong.
相同的issue:#242
No branches or pull requests
使用MySQL 表作为源头表,表内有一个deciaml 字段 增量 同步到 starrock表中,对应的字段为null
期望:不能为空
The text was updated successfully, but these errors were encountered: