aokolnychyi commented on a change in pull request #3661: URL: https://github.com/apache/iceberg/pull/3661#discussion_r770371146
########## File path: spark/v3.2/spark-extensions/src/main/scala/org/apache/spark/sql/catalyst/planning/RewrittenRowLevelCommand.scala ########## @@ -0,0 +1,90 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +package org.apache.spark.sql.catalyst.planning + +import org.apache.spark.sql.AnalysisException +import org.apache.spark.sql.catalyst.plans.logical.LogicalPlan +import org.apache.spark.sql.catalyst.plans.logical.ReplaceData +import org.apache.spark.sql.catalyst.plans.logical.RowLevelCommand +import org.apache.spark.sql.connector.catalog.Table +import org.apache.spark.sql.execution.datasources.v2.DataSourceV2Relation +import org.apache.spark.sql.execution.datasources.v2.DataSourceV2ScanRelation + +/** + * An extractor for operations such as DELETE and MERGE that require rewriting data. + * + * This class extracts the following entities: + * - the row-level command (such as DeleteFromIcebergTable); + * - the scan relation in the rewrite plan that can be either DataSourceV2Relation or + * DataSourceV2ScanRelation depending on whether the planning has already happened; + * - the current rewrite plan. + */ +object RewrittenRowLevelCommand { + type ReturnType = (RowLevelCommand, LogicalPlan, LogicalPlan) + + def unapply(plan: LogicalPlan): Option[ReturnType] = plan match { + case c: RowLevelCommand if c.rewritePlan.nonEmpty => + val rewritePlan = c.rewritePlan.get + + // both ReplaceData and WriteDelta reference a write relation + // but the corresponding scan relation should be at the bottom of the write plan + // both the write and scan relations will share the same RowLevelOperationTable object + // that's why it is safe to use reference equality to find the needed scan relation + + rewritePlan match { + case rd: ReplaceData => + rd.table match { + case DataSourceV2Relation(table, _, _, _, _) => Review comment: I agree. I've restructured this place to match what Spark does in other places. -- 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]
