cloud-fan commented on a change in pull request #29970:
URL: https://github.com/apache/spark/pull/29970#discussion_r501225734
##########
File path:
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/plans/logical/v2Commands.scala
##########
@@ -59,7 +61,9 @@ case class AppendData(
table: NamedRelation,
query: LogicalPlan,
writeOptions: Map[String, String],
- isByName: Boolean) extends V2WriteCommand
+ isByName: Boolean) extends V2WriteCommand {
+ override def withNewTable(t: NamedRelation): AppendData = copy(table = t)
Review comment:
IIRC there was a discussion about it before and we decided to not making
`table` as a child for writing commands. The same applies to
`InsertIntoStatement`.
I can't clearly recall what the reason was, probably because we need to
strip `SubqueryAlias` for `table` in the writing commands.
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]