Skip to content

Commit 0282bba

Browse files
committed
Merge branch '1.8_v3.8.1_mysql_allcache' into '1.8_v3.8.1'
[mysql维表全量缓存报空指针异常错误][19145] See merge request !78
2 parents 57f2d67 + 8b8c54c commit 0282bba

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)