Skip to content

Commit

Permalink
[VL] enable more spark33 unit tests (#3579)
Browse files Browse the repository at this point in the history
Signed-off-by: Yuan Zhou <[email protected]>
  • Loading branch information
zhouyuan authored Nov 27, 2023
1 parent 1f0f6a8 commit 62f273f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 23 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 @@ -1120,7 +1111,6 @@ class VeloxTestSettings extends BackendTestSettings {
enableSuite[GlutenFileScanSuite]
enableSuite[GlutenGeneratorFunctionSuite]
enableSuite[GlutenInjectRuntimeFilterSuite]
// FIXME: yan
.exclude("Merge runtime bloom filters")
enableSuite[GlutenIntervalFunctionsSuite]
enableSuite[GlutenJoinSuite]
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 62f273f

Please sign in to comment.