rubenada commented on code in PR #3661:
URL: https://github.com/apache/calcite/pull/3661#discussion_r1474483811
##########
core/src/main/java/org/apache/calcite/adapter/enumerable/EnumerableBatchNestedLoopJoin.java:
##########
@@ -63,9 +64,11 @@ protected EnumerableBatchNestedLoopJoin(
RexNode condition,
Set<CorrelationId> variablesSet,
ImmutableBitSet requiredColumns,
- JoinRelType joinType) {
+ JoinRelType joinType,
+ Join originalJoin) {
super(cluster, traits, ImmutableList.of(), left, right, condition,
variablesSet, joinType);
this.requiredColumns = requiredColumns;
+ this.originalJoin = originalJoin;
}
public static EnumerableBatchNestedLoopJoin create(
Review Comment:
Ok @JiajunBernoulli .
I have committed the comment on the next RN about the breaking change.
When the PR gets merged, I will mention it also in the Jira.
--
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]