This is an automated email from the ASF dual-hosted git repository.
felixybw pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-gluten.git
The following commit(s) were added to refs/heads/main by this push:
new c09d79330 enable all passed 3.5 ut (#5494)
c09d79330 is described below
commit c09d79330867e4b1e37525547511e6c76d11aae9
Author: 高阳阳 <[email protected]>
AuthorDate: Thu Apr 25 11:35:45 2024 +0800
enable all passed 3.5 ut (#5494)
3 uts should be the only remaning UTs not been enabled for spark 3.5
comparing with 3.4
---
.../src/test/scala/org/apache/gluten/expression/VeloxUdfSuite.scala | 6 ++----
.../scala/org/apache/gluten/utils/velox/VeloxTestSettings.scala | 3 +--
2 files changed, 3 insertions(+), 6 deletions(-)
diff --git
a/backends-velox/src/test/scala/org/apache/gluten/expression/VeloxUdfSuite.scala
b/backends-velox/src/test/scala/org/apache/gluten/expression/VeloxUdfSuite.scala
index fc8d6c0d4..40452dfbc 100644
---
a/backends-velox/src/test/scala/org/apache/gluten/expression/VeloxUdfSuite.scala
+++
b/backends-velox/src/test/scala/org/apache/gluten/expression/VeloxUdfSuite.scala
@@ -71,8 +71,7 @@ abstract class VeloxUdfSuite extends GlutenQueryTest with
SQLHelper {
.set("spark.memory.offHeap.size", "1024MB")
}
- // Disable for Spark3.5.
- testWithSpecifiedSparkVersion("test udf", Some("3.2"), Some("3.4")) {
+ testWithSpecifiedSparkVersion("test udf", Some("3.2")) {
val df = spark.sql("""select
| myudf1(1),
| myudf1(1L),
@@ -85,8 +84,7 @@ abstract class VeloxUdfSuite extends GlutenQueryTest with
SQLHelper {
.sameElements(Array(Row(6, 6L, 105, Date.valueOf("2024-03-30")))))
}
- // Disable for Spark3.5.
- testWithSpecifiedSparkVersion("test udaf", Some("3.2"), Some("3.4")) {
+ testWithSpecifiedSparkVersion("test udaf", Some("3.2")) {
val df = spark.sql("""select
| myavg(1),
| myavg(1L),
diff --git
a/gluten-ut/spark35/src/test/scala/org/apache/gluten/utils/velox/VeloxTestSettings.scala
b/gluten-ut/spark35/src/test/scala/org/apache/gluten/utils/velox/VeloxTestSettings.scala
index 33b2ffa70..4e88c40bb 100644
---
a/gluten-ut/spark35/src/test/scala/org/apache/gluten/utils/velox/VeloxTestSettings.scala
+++
b/gluten-ut/spark35/src/test/scala/org/apache/gluten/utils/velox/VeloxTestSettings.scala
@@ -57,8 +57,7 @@ class VeloxTestSettings extends BackendTestSettings {
// Rewrite the following tests in GlutenDataSourceV2Suite.
.exclude("partitioning reporting")
.exclude("ordering and partitioning reporting")
- // Disable for Spark3.5.
- // enableSuite[GlutenDeleteFromTableSuite]
+ enableSuite[GlutenDeleteFromTableSuite]
enableSuite[GlutenFileDataSourceV2FallBackSuite]
// DISABLED: GLUTEN-4893 Vanilla UT checks scan operator by exactly
matching the class type
.exclude("Fallback Parquet V2 to V1")
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]