This is an automated email from the ASF dual-hosted git repository.
yangzy pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-gluten.git
The following commit(s) were added to refs/heads/main by this push:
new c3599b304 [GLUTEN-5759][CORE] Optimze checkGlutenOperatorMatch to show
clearer error message (#5760)
c3599b304 is described below
commit c3599b304cbc1b613796763aa157d500e90817cf
Author: James Xu <[email protected]>
AuthorDate: Thu May 16 22:46:25 2024 +0800
[GLUTEN-5759][CORE] Optimze checkGlutenOperatorMatch to show clearer error
message (#5760)
---
.../org/apache/gluten/execution/WholeStageTransformerSuite.scala | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/gluten-core/src/test/scala/org/apache/gluten/execution/WholeStageTransformerSuite.scala
b/gluten-core/src/test/scala/org/apache/gluten/execution/WholeStageTransformerSuite.scala
index c52002b68..bb1867d96 100644
---
a/gluten-core/src/test/scala/org/apache/gluten/execution/WholeStageTransformerSuite.scala
+++
b/gluten-core/src/test/scala/org/apache/gluten/execution/WholeStageTransformerSuite.scala
@@ -242,8 +242,8 @@ abstract class WholeStageTransformerSuite
val executedPlan = getExecutedPlan(df)
assert(
executedPlan.exists(plan => tag.runtimeClass.isInstance(plan)),
- s"Expect ${tag.runtimeClass.getClass.getSimpleName} exists " +
- s"in executedPlan:\n $executedPlan"
+ s"Expect ${tag.runtimeClass.getSimpleName} exists " +
+ s"in executedPlan:\n ${executedPlan.last}"
)
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]