File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed
gluten-ut/spark41/src/test/scala/org/apache/gluten/utils/velox
tools/gluten-it/common/src/main/scala/org/apache/gluten/integration Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -601,6 +601,8 @@ class VeloxTestSettings extends BackendTestSettings {
601601 enableSuite[GlutenOuterJoinSuiteForceShjOff ]
602602 enableSuite[GlutenFallbackStrategiesSuite ]
603603 enableSuite[GlutenBroadcastExchangeSuite ]
604+ // TODO: fix on Spark-4.1 introduced by see https://github.com/apache/spark/pull/51623
605+ .exclude(" SPARK-52962: broadcast exchange should not reset metrics" )
604606 enableSuite[GlutenLocalBroadcastExchangeSuite ]
605607 enableSuite[GlutenCoalesceShufflePartitionsSuite ]
606608 // Rewrite for Gluten. Change details are in the inline comments in individual tests.
@@ -741,6 +743,8 @@ class VeloxTestSettings extends BackendTestSettings {
741743 // Result depends on the implementation for nondeterministic expression rand.
742744 // Not really an issue.
743745 .exclude(" SPARK-10740: handle nondeterministic expressions correctly for set operations" )
746+ // TODO: fix on Spark-4.1
747+ .excludeByPrefix(" SPARK-52921" ) // see https://github.com/apache/spark/pull/51623
744748 enableSuite[GlutenDataFrameStatSuite ]
745749 enableSuite[GlutenDataFrameSuite ]
746750 // Rewrite these tests because it checks Spark's physical operators.
Original file line number Diff line number Diff line change @@ -69,6 +69,7 @@ abstract class Suite(
6969 sessionSwitcher.addDefaultConf(" spark.sql.broadcastTimeout" , " 1800" )
7070 sessionSwitcher.addDefaultConf(" spark.network.io.preferDirectBufs" , " false" )
7171 sessionSwitcher.addDefaultConf(" spark.unsafe.exceptionOnMemoryLeak" , s " $errorOnMemLeak" )
72+ sessionSwitcher.addDefaultConf(" spark.sql.unionOutputPartitioning" , " false" )
7273
7374 if (dataSource() == " delta" ) {
7475 sessionSwitcher.addDefaultConf(
You can’t perform that action at this time.
0 commit comments