org.apache.paimon.spark.catalyst.analysis.RowLevelHelper.scala Maven / Gradle / Ivy
/*
* 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.paimon.spark.catalyst.analysis
import org.apache.paimon.table.Table
import org.apache.spark.sql.catalyst.SQLConfHelper
import org.apache.spark.sql.catalyst.expressions.{AttributeReference, AttributeSet, BinaryExpression, EqualTo, Expression, SubqueryExpression}
import org.apache.spark.sql.catalyst.plans.logical.Assignment
trait RowLevelHelper extends SQLConfHelper {
val operation: RowLevelOp
protected def checkPaimonTable(table: Table): Unit = {
operation.checkValidity(table)
}
protected def checkSubquery(condition: Expression): Unit = {
if (SubqueryExpression.hasSubquery(condition)) {
throw new RuntimeException(
s"Subqueries are not supported in $condition operation (condition = $condition).")
}
}
protected def validUpdateAssignment(
output: AttributeSet,
primaryKeys: Seq[String],
assignments: Seq[Assignment]): Boolean = {
!primaryKeys.exists {
primaryKey => isUpdateExpressionToPrimaryKey(output, assignments, primaryKey)
}
}
// Check whether there is an update expression related to primary key.
protected def isUpdateExpressionToPrimaryKey(
output: AttributeSet,
expressions: Seq[Expression],
primaryKey: String): Boolean = {
val resolver = conf.resolver
// Check whether this attribute is same to primary key and is from target table.
def isTargetPrimaryKey(attr: AttributeReference): Boolean = {
resolver(primaryKey, attr.name) && output.contains(attr)
}
expressions
.filterNot {
case BinaryExpression(left, right) => left == right
case Assignment(key, value) => key == value
}
.exists {
case EqualTo(left: AttributeReference, _) =>
isTargetPrimaryKey(left)
case Assignment(key: AttributeReference, _) =>
isTargetPrimaryKey(key)
case _ => false
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy