Skip to content

Commit 2b0af47

Browse files
author
dapeng
committed
修复维表数据错乱问题http://redmine.prod.dtstack.cn/issues/24996
1 parent ca8d08d commit 2b0af47

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rdb/rdb-side/src/main/java/com/dtstack/flink/sql/side/rdb/async/RdbAsyncReqRow.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ protected void init(SideInfo sideInfo) {
8888

8989
@Override
9090
public void asyncInvoke(CRow input, ResultFuture<CRow> resultFuture) throws Exception {
91-
CRow copyCrow = new CRow(input.row(), input.change());
91+
CRow copyCrow = new CRow(Row.copy(input.row()), input.change());
9292
JsonArray inputParams = new JsonArray();
9393
for (Integer conValIndex : sideInfo.getEqualValIndex()) {
9494
Object equalObj = copyCrow.row().getField(conValIndex);

0 commit comments

Comments
 (0)