davidradl commented on code in PR #26616:
URL: https://github.com/apache/flink/pull/26616#discussion_r2115591333
##########
flink-table/flink-table-planner/src/main/java/org/apache/flink/table/planner/plan/nodes/exec/stream/StreamExecLookupJoin.java:
##########
@@ -294,4 +355,47 @@ protected Transformation<RowData>
createSyncLookupJoinWithState(
transform.setStateKeyType(keySelector.getProducedType());
return transform;
}
+
+ private RowDataKeySelector getKeySelector(
+ boolean singleParallelism, int[] keys, ClassLoader classLoader,
RowType inputRowType) {
+ RowDataKeySelector keySelector;
+ if (singleParallelism) {
+ keySelector = EmptyRowDataKeySelector.INSTANCE;
+ } else {
+ // make it a deterministic asc order
+ Arrays.sort(keys);
Review Comment:
do the integers representing the keys mean anything here?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]