JiajunBernoulli commented on code in PR #3661:
URL: https://github.com/apache/calcite/pull/3661#discussion_r1473700813
##########
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:
This is public function.
Can we have an old function that be marked as Deprecated?
--
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]