@@ -20,7 +20,7 @@ import org.apache.spark.sql.{AuronQueryTest, Row}
2020import org .apache .spark .sql .execution .joins .auron .plan .NativeBroadcastJoinExec
2121
2222import org .apache .auron .spark .configuration .SparkAuronConfiguration
23- import org .apache .auron .util .{ AuronTestUtils , SparkVersionUtil }
23+ import org .apache .auron .util .AuronTestUtils
2424
2525class AuronQuerySuite extends AuronQueryTest with BaseAuronSQLSuite with AuronSQLTestHelper {
2626 import testImplicits ._
@@ -42,9 +42,6 @@ class AuronQuerySuite extends AuronQueryTest with BaseAuronSQLSuite with AuronSQ
4242 }
4343
4444 test(" test filter with year function" ) {
45- // TODO: Fix flaky codegen cache failures in SPARK-4.x, https://github.com/apache/auron/issues/1961
46- assume(! SparkVersionUtil .isSparkV40OrGreater)
47-
4845 withTable(" t1" ) {
4946 sql(" create table t1 using parquet as select '2024-12-18' as event_time" )
5047 checkSparkAnswerAndOperator(s """
@@ -57,9 +54,6 @@ class AuronQuerySuite extends AuronQueryTest with BaseAuronSQLSuite with AuronSQ
5754 }
5855
5956 test(" test select multiple spark ext functions with the same signature" ) {
60- // TODO: Fix flaky codegen cache failures in SPARK-4.x, https://github.com/apache/auron/issues/1961
61- assume(! SparkVersionUtil .isSparkV40OrGreater)
62-
6357 withTable(" t1" ) {
6458 sql(" create table t1 using parquet as select '2024-12-18' as event_time" )
6559 checkSparkAnswerAndOperator(" select year(event_time), month(event_time) from t1" )
@@ -177,9 +171,6 @@ class AuronQuerySuite extends AuronQueryTest with BaseAuronSQLSuite with AuronSQ
177171 }
178172
179173 test(" floor function with long input" ) {
180- // TODO: Fix flaky codegen cache failures in SPARK-4.x, https://github.com/apache/auron/issues/1961
181- assume(! SparkVersionUtil .isSparkV40OrGreater)
182-
183174 withTable(" t1" ) {
184175 sql(" create table t1 using parquet as select 1L as c1, 2.2 as c2" )
185176 checkSparkAnswerAndOperator(" select floor(c1), floor(c2) from t1" )
0 commit comments