You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@calcite.apache.org by GitBox <gi...@apache.org> on 2022/05/23 13:30:16 UTC

[GitHub] [calcite] chunweilei commented on a diff in pull request #2815: [CALCITE-5166] Method accept(RelShuttle) is not overridden in LogicalCalc and LogicalTableModify

chunweilei commented on code in PR #2815:
URL: https://github.com/apache/calcite/pull/2815#discussion_r879459408


##########
core/src/main/java/org/apache/calcite/rel/logical/LogicalTableModify.java:
##########
@@ -92,4 +93,8 @@ public static LogicalTableModify create(RelOptTable table,
         sole(inputs), getOperation(), getUpdateColumnList(),
         getSourceExpressionList(), isFlattened());
   }
+
+  @Override public RelNode accept(RelShuttle shuttle) {
+    return shuttle.visit(this);
+  }

Review Comment:
   Get it! Thank you for your effort. 



-- 
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: commits-unsubscribe@calcite.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org