Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
wForget committed Dec 11, 2024
1 parent b9117e9 commit 91f3e0d
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,7 @@ class GlutenSuite extends KyuubiFunSuite with GlutenSuiteMixin {
test("KYUUBI #5467: test gluten plan") {
withSparkSession(SparkSession.builder.config(sparkConf).getOrCreate()) { spark =>
val plan = spark.sql("explain SELECT 1").head().getString(0)
assert(plan.contains("VeloxColumnarToRowExec") && plan.contains(
"VeloxColumnarToRowExec") && plan.contains("RowToVeloxColumnar"))
assert(plan.contains("VeloxColumnarToRow") && plan.contains("RowToVeloxColumnar"))
}
}
}

0 comments on commit 91f3e0d

Please sign in to comment.