Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zhaohehuhu committed Dec 15, 2023
1 parent 495806e commit 1955542
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ case class MaxScanStrategy(session: SparkSession)
.builder("isIcebergRelation")
.impl(Class.forName("org.apache.spark.sql.catalyst.utils.PlanUtils"))
.buildChecked.invoke[Boolean](relation.relation)
if (isIcebergRelation) {
if (!isIcebergRelation) {
return
}
val icebergTable = relation.relation.table
Expand Down

0 comments on commit 1955542

Please sign in to comment.