Skip to content

Commit a9bbab0

Browse files
author
gituser
committed
Merge branch 'hotfix_1.10_4.0.x_34473' into 1.10_release_4.0.x
2 parents 4f31e5c + 787d302 commit a9bbab0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/java/com/dtstack/flink/sql/side/operator/SideWithAllCacheOperator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,6 @@ private static BaseAllReqRow loadFlatMap(String sideType, String sqlRootDir, Row
6060
public static DataStream getSideJoinDataStream(DataStream inputStream, String sideType, String sqlRootDir, RowTypeInfo rowTypeInfo, JoinInfo joinInfo,
6161
List<FieldInfo> outFieldInfoList, AbstractSideTableInfo sideTableInfo, String pluginLoadMode) throws Exception {
6262
BaseAllReqRow allReqRow = loadFlatMap(sideType, sqlRootDir, rowTypeInfo, joinInfo, outFieldInfoList, sideTableInfo, pluginLoadMode);
63-
return inputStream.flatMap(allReqRow);
63+
return inputStream.flatMap(allReqRow).setParallelism(sideTableInfo.getParallelism());
6464
}
6565
}

0 commit comments

Comments
 (0)