Skip to content

Commit

Permalink
fix ut
Browse files Browse the repository at this point in the history
  • Loading branch information
zzcclp committed Dec 5, 2023
1 parent 4a6a5a9 commit 432ad8f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -196,11 +196,11 @@ class GlutenClickHouseRSSColumnarShuffleAQESuite
val res = spark.sql("select spark_partition_id(), id from t group by id").collect()
assert(res.length == 3)
assert(res(0).getInt(0) == 0)
assert(res(0).getInt(1) == 0)
assert(res(0).getInt(1) == 2)
assert(res(1).getInt(0) == 1)
assert(res(1).getInt(1) == 1)
assert(res(2).getInt(0) == 2)
assert(res(2).getInt(1) == 2)
assert(res(2).getInt(1) == 0)
}
}
}

0 comments on commit 432ad8f

Please sign in to comment.