LuciferYang commented on code in PR #12981:
URL: https://github.com/apache/gluten/pull/12981#discussion_r3969498558


##########
backends-clickhouse/src/test/scala/org/apache/gluten/execution/hive/GlutenClickHouseHiveTableSuite.scala:
##########
@@ -1038,25 +1038,13 @@ class GlutenClickHouseHiveTableSuite
     spark.sql(
       s"CREATE FUNCTION my_add as " +
         s"'org.apache.hadoop.hive.contrib.udf.example.UDFExampleAdd2' USING 
JAR '$jarUrl'")
-    if (isSparkVersionLE("3.3")) {
-      runQueryAndCompare("select MY_ADD(id, id+1) from range(10)")(
-        checkGlutenPlan[ProjectExecTransformer])
-    } else {
-      runQueryAndCompare("select MY_ADD(id, id+1) from range(10)", noFallBack 
= false)(_ => {})
-    }
+    runQueryAndCompare("select MY_ADD(id, id+1) from range(10)", noFallBack = 
false)(_ => {})
   }
 
+  // TODO: the expected operator counts at the call sites below only held on 
Spark 3.3. Re-derive
+  // them for the supported versions and turn this back into a real assertion.
   def checkOperatorCount[T <: TransformSupport](count: Int)(df: 
DataFrame)(implicit
-      tag: ClassTag[T]): Unit = {
-    if (spark33) {
-      assert(
-        getExecutedPlan(df).count(
-          plan => {
-            plan.getClass == tag.runtimeClass
-          }) == count,
-        s"executed plan: ${getExecutedPlan(df)}")
-    }
-  }
+      tag: ClassTag[T]): Unit = {}

Review Comment:
   Same answer as the copy in `GlutenFunctionValidateSuite`: tracked in #12988, 
left untouched here on purpose. Restoring the assertions needs the counts 
re-derived on a supported Spark version, and converting the enclosing CSE tests 
to `ignore` is a coverage call for @zzcclp rather than something to settle 
inside a version-check cleanup.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


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

Reply via email to