@@ -2271,17 +2271,7 @@ index 8e88049f51e..49f2001dc6b 100644
22712271 val schema = StructType(Seq(
22722272 StructField("a", IntegerType, nullable = false)
22732273 ))
2274- @@ -1933,7 +1949,8 @@ abstract class ParquetFilterSuite extends QueryTest with ParquetTest with Shared
2275- }
2276- }
2277-
2278- - test("SPARK-25207: exception when duplicate fields in case-insensitive mode") {
2279- + test("SPARK-25207: exception when duplicate fields in case-insensitive mode",
2280- + IgnoreCometNativeDataFusion("https://github.com/apache/datafusion-comet/issues/3311")) {
2281- withTempPath { dir =>
2282- val count = 10
2283- val tableName = "spark_25207"
2284- @@ -1984,7 +2001,8 @@ abstract class ParquetFilterSuite extends QueryTest with ParquetTest with Shared
2274+ @@ -1984,7 +2000,8 @@ abstract class ParquetFilterSuite extends QueryTest with ParquetTest with Shared
22852275 }
22862276 }
22872277
@@ -2331,27 +2321,7 @@ diff --git a/sql/core/src/test/scala/org/apache/spark/sql/execution/datasources/
23312321index 8ed9ef1630e..f312174b182 100644
23322322--- a/sql/core/src/test/scala/org/apache/spark/sql/execution/datasources/parquet/ParquetIOSuite.scala
23332323+++ b/sql/core/src/test/scala/org/apache/spark/sql/execution/datasources/parquet/ParquetIOSuite.scala
2334- @@ -1064,7 +1064,8 @@ class ParquetIOSuite extends QueryTest with ParquetTest with SharedSparkSession
2335- }
2336- }
2337-
2338- - test("SPARK-35640: read binary as timestamp should throw schema incompatible error") {
2339- + test("SPARK-35640: read binary as timestamp should throw schema incompatible error",
2340- + IgnoreCometNativeDataFusion("https://github.com/apache/datafusion-comet/issues/3311")) {
2341- val data = (1 to 4).map(i => Tuple1(i.toString))
2342- val readSchema = StructType(Seq(StructField("_1", DataTypes.TimestampType)))
2343-
2344- @@ -1075,7 +1076,8 @@ class ParquetIOSuite extends QueryTest with ParquetTest with SharedSparkSession
2345- }
2346- }
2347-
2348- - test("SPARK-35640: int as long should throw schema incompatible error") {
2349- + test("SPARK-35640: int as long should throw schema incompatible error",
2350- + IgnoreCometNativeDataFusion("https://github.com/apache/datafusion-comet/issues/3311")) {
2351- val data = (1 to 4).map(i => Tuple1(i))
2352- val readSchema = StructType(Seq(StructField("_1", DataTypes.LongType)))
2353-
2354- @@ -1345,7 +1347,8 @@ class ParquetIOSuite extends QueryTest with ParquetTest with SharedSparkSession
2324+ @@ -1345,7 +1345,8 @@ class ParquetIOSuite extends QueryTest with ParquetTest with SharedSparkSession
23552325 }
23562326 }
23572327
@@ -2365,17 +2335,7 @@ diff --git a/sql/core/src/test/scala/org/apache/spark/sql/execution/datasources/
23652335index f6472ba3d9d..ce39ebb52e6 100644
23662336--- a/sql/core/src/test/scala/org/apache/spark/sql/execution/datasources/parquet/ParquetQuerySuite.scala
23672337+++ b/sql/core/src/test/scala/org/apache/spark/sql/execution/datasources/parquet/ParquetQuerySuite.scala
2368- @@ -185,7 +185,8 @@ abstract class ParquetQuerySuite extends QueryTest with ParquetTest with SharedS
2369- }
2370- }
2371-
2372- - test("SPARK-36182: can't read TimestampLTZ as TimestampNTZ") {
2373- + test("SPARK-36182: can't read TimestampLTZ as TimestampNTZ",
2374- + IgnoreCometNativeDataFusion("https://github.com/apache/datafusion-comet/issues/3311")) {
2375- val data = (1 to 1000).map { i =>
2376- val ts = new java.sql.Timestamp(i)
2377- Row(ts)
2378- @@ -998,7 +999,8 @@ abstract class ParquetQuerySuite extends QueryTest with ParquetTest with SharedS
2338+ @@ -998,7 +998,8 @@ abstract class ParquetQuerySuite extends QueryTest with ParquetTest with SharedS
23792339 }
23802340 }
23812341
@@ -2415,17 +2375,7 @@ index f6472ba3d9d..ce39ebb52e6 100644
24152375 checkAnswer(readParquet("a DECIMAL(3, 2)", path), sql("SELECT 1.00"))
24162376 checkAnswer(readParquet("b DECIMAL(3, 2)", path), Row(null))
24172377 checkAnswer(readParquet("b DECIMAL(11, 1)", path), sql("SELECT 123456.0"))
2418- @@ -1133,7 +1138,8 @@ abstract class ParquetQuerySuite extends QueryTest with ParquetTest with SharedS
2419- }
2420- }
2421-
2422- - test("row group skipping doesn't overflow when reading into larger type") {
2423- + test("row group skipping doesn't overflow when reading into larger type",
2424- + IgnoreCometNativeDataFusion("https://github.com/apache/datafusion-comet/issues/3311")) {
2425- withTempPath { path =>
2426- Seq(0).toDF("a").write.parquet(path.toString)
2427- // The vectorized and non-vectorized readers will produce different exceptions, we don't need
2428- @@ -1148,7 +1154,7 @@ abstract class ParquetQuerySuite extends QueryTest with ParquetTest with SharedS
2378+ @@ -1148,7 +1152,7 @@ abstract class ParquetQuerySuite extends QueryTest with ParquetTest with SharedS
24292379 .where(s"a < ${Long.MaxValue}")
24302380 .collect()
24312381 }
0 commit comments