rdblue commented on a change in pull request #2022:
URL: https://github.com/apache/iceberg/pull/2022#discussion_r561415376
##########
File path:
spark3-extensions/src/main/scala/org/apache/spark/sql/execution/datasources/v2/ExtendedDataSourceV2Strategy.scala
##########
@@ -81,8 +81,8 @@ case class ExtendedDataSourceV2Strategy(spark: SparkSession)
extends Strategy {
case ReplaceData(_, batchWrite, query) =>
ReplaceDataExec(batchWrite, planLater(query)) :: Nil
- case MergeInto(mergeIntoProcessor, targetRelation, child) =>
- MergeIntoExec(mergeIntoProcessor, targetRelation, planLater(child)) ::
Nil
+ case MergeInto(mergeIntoParms, targetAttributes, child) =>
+ MergeIntoExec(mergeIntoParms, targetAttributes, planLater(child)) :: Nil
Review comment:
I think it would be more clear to use `output` instead of
`targetAttributes` here since that's what this is setting, but this is minor.
----------------------------------------------------------------
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]