cloud-fan commented on code in PR #48498:
URL: https://github.com/apache/spark/pull/48498#discussion_r1803340750
##########
sql/core/src/test/scala/org/apache/spark/sql/execution/adaptive/AdaptiveQueryExecSuite.scala:
##########
@@ -936,7 +936,8 @@ class AdaptiveQueryExecSuite
val error = intercept[SparkException] {
joined.collect()
}
- assert(error.getMessage() contains "coalesce test error")
+ assert(error.getMessage().contains("coalesce test error") ||
+ error.getMessage().contains("Multiple failures in stage
materialization"))
Review Comment:
For `Multiple failures in stage materialization`, we put each stage's
failure into `Exception#suppressed`. Shall we find the `coalesce test error` in
the suppressed errors?
--
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]