Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 45265f2

Browse files
committedJun 5, 2025·
Update AdaptiveQueryExecSuite.scala
1 parent 425add1 commit 45265f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎sql/core/src/test/scala/org/apache/spark/sql/execution/adaptive/AdaptiveQueryExecSuite.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -936,7 +936,7 @@ class AdaptiveQueryExecSuite
936936
joined.collect()
937937
}
938938
val exceptionMessages = (Seq(error) ++ Option(error.getCause) ++ error.getSuppressed())
939-
.flatMap(e => Some(e.getMessage))
939+
.flatMap(e => Option(e.getMessage))
940940
assert(exceptionMessages.exists(_.contains("coalesce test error")))
941941

942942
val adaptivePlan = joined.queryExecution.executedPlan.asInstanceOf[AdaptiveSparkPlanExec]

0 commit comments

Comments
 (0)
Please sign in to comment.