YannByron commented on a change in pull request #4270:
URL: https://github.com/apache/hudi/pull/4270#discussion_r767251543
##########
File path:
hudi-spark-datasource/hudi-spark/src/main/scala/org/apache/spark/sql/hudi/command/CreateHoodieTableAsSelectCommand.scala
##########
@@ -41,6 +41,10 @@ case class CreateHoodieTableAsSelectCommand(
mode: SaveMode,
query: LogicalPlan) extends DataWritingCommand {
+ def withNewChildInternal(newChild: LogicalPlan):
CreateHoodieTableAsSelectCommand = {
Review comment:
`CreateHoodieTableAsSelectCommand ` has already extended
`DataWritingCommand` and then `UnaryLike` which overrides
`withNewChildrenInternal` with `final` keyword and declare
`withNewChildInternal ` for subclasses.
`trait DataWritingCommand extends UnaryCommand`
`trait UnaryCommand extends Command with UnaryLike[LogicalPlan]`

--
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]