Skip to content

Commit fd20156

Browse files
committed
Merge remote-tracking branch 'origin/1.8_v3.8.1' into v1.8.0_dev
2 parents 349fa5a + 0282bba commit fd20156

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

rdb/rdb-side/src/main/java/com/dtstack/flink/sql/side/rdb/all/RdbAllReqRow.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,9 +119,8 @@ public void flatMap(Row value, Collector<Row> out) throws Exception {
119119
for (Integer conValIndex : sideInfo.getEqualValIndex()) {
120120
Object equalObj = value.getField(conValIndex);
121121
if (equalObj == null) {
122-
out.collect(null);
122+
return;
123123
}
124-
125124
inputParams.add(equalObj);
126125
}
127126

0 commit comments

Comments
 (0)