lincoln-lil commented on code in PR #20118:
URL: https://github.com/apache/flink/pull/20118#discussion_r913843116
##########
flink-table/flink-table-planner/src/main/java/org/apache/flink/table/planner/plan/rules/logical/PushProjectIntoTableSourceScanRule.java:
##########
@@ -337,11 +339,69 @@ private RowType performPushDown(
private List<RexNode> rewriteProjections(
RelOptRuleCall call, TableSourceTable source, NestedSchema
projectedSchema) {
final LogicalProject project = call.rel(0);
+ List<RexNode> newProjects = project.getProjects();
+
if (supportsProjectionPushDown(source.tableSource())) {
- return NestedProjectionUtil.rewrite(
- project.getProjects(), projectedSchema,
call.builder().getRexBuilder());
- } else {
- return project.getProjects();
+ // if support project push down, then all input ref will be
rewritten includes metadata
Review Comment:
Yes, good question here, I've update the pr by simplifying the code.
--
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]