Github user chiwanpark commented on a diff in the pull request:
https://github.com/apache/flink/pull/1052#discussion_r37998051
--- Diff:
flink-optimizer/src/main/java/org/apache/flink/optimizer/operators/SortMergeJoinDescriptor.java
---
@@ -99,7 +99,7 @@ public DualInputPlanNode instantiate(Channel in1, Channel
in2, TwoInputNode node
inputOrders = tmp;
}
- return new DualInputPlanNode(node,
"Join("+node.getOperator().getName()+")", in1, in2, DriverStrategy.MERGE,
this.keys1, this.keys2, inputOrders);
+ return new DualInputPlanNode(node,
"Join("+node.getOperator().getName()+")", in1, in2, DriverStrategy.INNER_MERGE,
this.keys1, this.keys2, inputOrders);
--- End diff --
need spaces around `+` operator
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---