Guangwei
Guangwei
josn修改后报错是一样的 { "job": { "content": [ { "nameMapping": { "schemaMappings": { "sgw_test": "sgw_test" }, "tableMappings": { "sgw_test": { "src_test_table": "sink_test_table" } }, "fieldMappings": { "sgw_test": { "src_test_table": { "test_int": "test_int",...
bug原因: delete sql组装模板为delete from [table] where [column] = ?,当column为null时,delete from [table] where [column] = null不生效,应该为delete from [table] where [column] is null
任务考虑支持http任务类型吗
> * For some topics which need further discussions, we temporarily note the owner as `Community`. > > ### RoadMap 2024 > * Cloud Native > > * [ ]...
 我用之前的一个版本,当实例化binaryRowData时是可以的,新的版本示例化为了genericRowData对象,请问这里是怎么设置的,我想设置成转化为binaryRowData试一试
关闭算子链后,测试mysql binlog到oracle,发生类型转换精度丢失的问题: mysql ddl: CREATE TABLE taier_update_incre2_copy ( id int(11) NOT NULL, name varchar(255) DEFAULT NULL, age int(11) DEFAULT NULL, record_time datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC; oracle...
 不使用transform的条件下,columnRowData序列化出错,报错com.dtstack.chunjun.throwable.CastException: String[source] can not cast to BigDecimal.
> 用transformersql的情况下,数据类型不对应需要手动cast 另外,在上述场景下transformSQL好像没有存在的必要 "transformer": { "transformSql": "SELECT name,CAST(id AS BIGINT) as id,CAST(age AS BIGINT) as age FROM sourceTable" } transformSql是这样写吗?
> >  不使用transform的条件下,columnRowData序列化出错,报错com.dtstack.chunjun.throwable.CastException: String[source] can not cast to BigDecimal. > > 可以附上一下你的json脚本吗 { "job": { "content": [ { "reader": { "parameter": { "password": "Pwd@1234_Cmict", "port": 33062, "cat": "insert", "column":...
> > > 用transformersql的情况下,数据类型不对应需要手动cast 另外,在上述场景下transformSQL好像没有存在的必要 > > > > > > ``` > > "transformer": { > > "transformSql": "SELECT name,CAST(id AS BIGINT) as id,CAST(age AS BIGINT) as age FROM...