rdblue commented on a change in pull request #2134: URL: https://github.com/apache/iceberg/pull/2134#discussion_r562804544
########## File path: spark3-extensions/src/main/scala/org/apache/spark/sql/catalyst/analysis/MergeIntoTablePredicateCheck.scala ########## @@ -27,12 +27,13 @@ import org.apache.spark.sql.catalyst.plans.logical.InsertAction import org.apache.spark.sql.catalyst.plans.logical.LogicalPlan import org.apache.spark.sql.catalyst.plans.logical.MergeIntoTable import org.apache.spark.sql.catalyst.plans.logical.UpdateAction +import org.apache.spark.sql.catalyst.utils.AliasedIcebergTable object MergeIntoTablePredicateCheck extends (LogicalPlan => Unit) { override def apply(plan: LogicalPlan): Unit = { plan foreach { - case merge: MergeIntoTable => + case merge@ MergeIntoTable(AliasedIcebergTable(_), _, _, _, _) => Review comment: Same comment here as in the alignment rule. ---------------------------------------------------------------- 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: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org