Skip to content

Commit

Permalink
[GLUTEN-5759][CORE] Optimze checkGlutenOperatorMatch to show clearer …
Browse files Browse the repository at this point in the history
…error message (#5760)
  • Loading branch information
xumingming authored May 16, 2024
1 parent 0d4258d commit c3599b3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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}"
)
}

Expand Down

0 comments on commit c3599b3

Please sign in to comment.