This is an automated email from the ASF dual-hosted git repository.

marong 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 79074ed2a  [VL] Hot-fix for checkOperator (#5262)
79074ed2a is described below

commit 79074ed2adc05e2390142f89af7ede396fa2b191
Author: Rong Ma <[email protected]>
AuthorDate: Tue Apr 2 16:44:52 2024 +0800

     [VL] Hot-fix for checkOperator (#5262)
---
 .../org/apache/gluten/execution/ScalarFunctionsValidateSuite.scala    | 4 ++--
 .../test/scala/org/apache/gluten/fuzzer/ShuffleWriterFuzzerTest.scala | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git 
a/backends-velox/src/test/scala/org/apache/gluten/execution/ScalarFunctionsValidateSuite.scala
 
b/backends-velox/src/test/scala/org/apache/gluten/execution/ScalarFunctionsValidateSuite.scala
index 220a9d6c5..f8821e02f 100644
--- 
a/backends-velox/src/test/scala/org/apache/gluten/execution/ScalarFunctionsValidateSuite.scala
+++ 
b/backends-velox/src/test/scala/org/apache/gluten/execution/ScalarFunctionsValidateSuite.scala
@@ -408,10 +408,10 @@ class ScalarFunctionsValidateSuite extends 
FunctionsValidateTest {
         
spark.read.parquet(path.getCanonicalPath).createOrReplaceTempView("view")
 
         runQueryAndCompare("SELECT from_utc_timestamp(a, 
\"America/Los_Angeles\") from view") {
-          checkOperatorMatch[ProjectExecTransformer]
+          checkGlutenOperatorMatch[ProjectExecTransformer]
         }
         runQueryAndCompare("SELECT from_utc_timestamp(a, b) from view") {
-          checkOperatorMatch[ProjectExecTransformer]
+          checkGlutenOperatorMatch[ProjectExecTransformer]
         }
     }
   }
diff --git 
a/backends-velox/src/test/scala/org/apache/gluten/fuzzer/ShuffleWriterFuzzerTest.scala
 
b/backends-velox/src/test/scala/org/apache/gluten/fuzzer/ShuffleWriterFuzzerTest.scala
index 4cef61f21..1d27f2681 100644
--- 
a/backends-velox/src/test/scala/org/apache/gluten/fuzzer/ShuffleWriterFuzzerTest.scala
+++ 
b/backends-velox/src/test/scala/org/apache/gluten/fuzzer/ShuffleWriterFuzzerTest.scala
@@ -46,7 +46,7 @@ class ShuffleWriterFuzzerTest extends FuzzerTestBase {
     }
 
   private val TEST_REPARTITION = (numPartitions: Int) => s"repartition - 
$numPartitions"
-  for (numPartitions <- Seq(3, 10, 100, 1000, 4000, 8000)) {
+  for (numPartitions <- Seq(1, 3, 10, 100, 1000, 4000, 8000)) {
     val testName = TEST_REPARTITION(numPartitions)
     test(testName) {
       repeat(10, testName, 
defaultRunner(testShuffle(REPARTITION_SQL(numPartitions))))


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to