Skip to content

Commit

Permalink
fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
andygrove committed Jun 4, 2024
1 parent dbd9978 commit 4a09193
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1606,7 +1606,7 @@ class CometExpressionSuite extends CometTestBase with AdaptiveSparkPlanHelper {
.mode("overwrite")
.parquet(shortArrayPath)
val shortArrayQuery = "select a, -a from t"
runArrayTest(shortArrayQuery, " caused", shortArrayPath)
runArrayTest(shortArrayQuery, "", shortArrayPath)

// byte values test
val byteArrayPath = new Path(dir.toURI.toString, "byte_array_test.parquet").toString
Expand All @@ -1616,7 +1616,7 @@ class CometExpressionSuite extends CometTestBase with AdaptiveSparkPlanHelper {
.mode("overwrite")
.parquet(byteArrayPath)
val byteArrayQuery = "select a, -a from t"
runArrayTest(byteArrayQuery, " caused", byteArrayPath)
runArrayTest(byteArrayQuery, "", byteArrayPath)

// interval values test
withTable("t_interval") {
Expand Down

0 comments on commit 4a09193

Please sign in to comment.