cloud-fan commented on code in PR #43270: URL: https://github.com/apache/spark/pull/43270#discussion_r1349933762
########## sql/core/src/main/scala/org/apache/spark/sql/execution/CommandResultExec.scala: ########## @@ -40,6 +40,8 @@ case class CommandResultExec( override def innerChildren: Seq[QueryPlan[_]] = Seq(commandPhysicalPlan) + override def executeToIterator(): Iterator[InternalRow] = unsafeRows.iterator Review Comment: good catch! can we follow `ExecutedCommandExec` and put this method right after `def executeCollect`? -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
