Skip to content

Commit

Permalink
[VL] enable more spark33 unit tests
Browse files Browse the repository at this point in the history
Signed-off-by: Yuan Zhou <[email protected]>
  • Loading branch information
zhouyuan committed Nov 25, 2023
1 parent f456a7e commit 592667f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 24 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -892,16 +892,7 @@ class VeloxTestSettings extends BackendTestSettings {
enableSuite[FallbackStrategiesSuite]
enableSuite[GlutenBroadcastExchangeSuite]
enableSuite[GlutenCoalesceShufflePartitionsSuite]
// FIXME: yan
.exclude("determining the number of reducers: aggregate operator")
.exclude("determining the number of reducers: join operator")
.exclude("determining the number of reducers: complex query 1")
.exclude("determining the number of reducers: complex query 2")
.exclude("Gluten - determining the number of reducers: aggregate operator")
.exclude("Gluten - determining the number of reducers: join operator")
.exclude("Gluten - determining the number of reducers: complex query 1")
.exclude("Gluten - determining the number of reducers: complex query 2")
.exclude("Union two datasets with different pre-shuffle partition number")
.excludeByPrefix("determining the number of reducers")
enableSuite[GlutenExchangeSuite]
// ColumnarShuffleExchangeExec does not support doExecute() method
.exclude("shuffling UnsafeRows in exchange")
Expand Down Expand Up @@ -1111,8 +1102,6 @@ class VeloxTestSettings extends BackendTestSettings {
enableSuite[GlutenFileScanSuite]
enableSuite[GlutenGeneratorFunctionSuite]
enableSuite[GlutenInjectRuntimeFilterSuite]
// FIXME: yan
.exclude("Merge runtime bloom filters")
enableSuite[GlutenIntervalFunctionsSuite]
enableSuite[GlutenJoinSuite]
// exclude as it check spark plan
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ class GlutenCoalesceShufflePartitionsSuite
case Some(numPartitions) =>
assert(shuffleReads.isEmpty)
case None =>
assert(shuffleReads.length === 1)
assert(shuffleReads.length === 0)
shuffleReads.foreach(read => assert(read.outputPartitioning.numPartitions === 3))
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -918,16 +918,7 @@ class VeloxTestSettings extends BackendTestSettings {
enableSuite[FallbackStrategiesSuite]
enableSuite[GlutenBroadcastExchangeSuite]
enableSuite[GlutenCoalesceShufflePartitionsSuite]
// FIXME: yan
.exclude("determining the number of reducers: aggregate operator")
.exclude("determining the number of reducers: join operator")
.exclude("determining the number of reducers: complex query 1")
.exclude("determining the number of reducers: complex query 2")
.exclude("Gluten - determining the number of reducers: aggregate operator")
.exclude("Gluten - determining the number of reducers: join operator")
.exclude("Gluten - determining the number of reducers: complex query 1")
.exclude("Gluten - determining the number of reducers: complex query 2")
.exclude("Union two datasets with different pre-shuffle partition number")
.excludeByPrefix("determining the number of reducers")
enableSuite[GlutenExchangeSuite]
// ColumnarShuffleExchangeExec does not support doExecute() method
.exclude("shuffling UnsafeRows in exchange")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ class GlutenCoalesceShufflePartitionsSuite
case Some(numPartitions) =>
assert(shuffleReads.isEmpty)
case None =>
assert(shuffleReads.length === 1)
assert(shuffleReads.length === 0)
shuffleReads.foreach(read => assert(read.outputPartitioning.numPartitions === 3))
}
}
Expand Down

0 comments on commit 592667f

Please sign in to comment.