lincoln-lil commented on code in PR #25068:
URL: https://github.com/apache/flink/pull/25068#discussion_r1676073456
##########
flink-table/flink-table-planner/src/main/java/org/apache/calcite/sql2rel/RelDecorrelator.java:
##########
@@ -268,20 +270,20 @@ protected RelNode decorrelate(RelNode root) {
.FilterIntoJoinRuleConfig.class)
.toRule())
.addRuleInstance(
- CoreRules.FILTER_PROJECT_TRANSPOSE
- .config
- .withRelBuilderFactory(f)
-
.as(FilterProjectTransposeRule.Config.class)
- .withOperandFor(
- Filter.class,
- filter ->
-
!RexUtil.containsCorrelation(
-
filter.getCondition()),
- Project.class,
- project -> true)
- .withCopyFilter(true)
- .withCopyProject(true)
- .toRule())
+ FlinkFilterProjectTransposeRule.build(
Review Comment:
Since we have added new changes, the section in the class comment marking
the scope of the line changes should also be updated.
--
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]