File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
spark/src/test/scala/org/apache/comet/parquet Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -107,19 +107,19 @@ abstract class ParquetReadSuite extends CometTestBase {
107107 Seq (
108108 StructField (" f1" , DecimalType .SYSTEM_DEFAULT ),
109109 StructField (" f2" , StringType ))) -> usingNativeIcebergCompat,
110- MapType (keyType = LongType , valueType = DateType ) -> false ,
110+ MapType (keyType = LongType , valueType = DateType ) -> usingNativeIcebergCompat ,
111111 StructType (
112112 Seq (
113113 StructField (" f1" , ByteType ),
114114 StructField (" f2" , StringType ))) -> usingNativeIcebergCompat,
115- MapType (keyType = IntegerType , valueType = BinaryType ) -> false ).foreach {
116- case (dt, expected) =>
115+ MapType (keyType = IntegerType , valueType = BinaryType ) -> usingNativeIcebergCompat)
116+ .foreach { case (dt, expected) =>
117117 assert(CometScanExec .isTypeSupported(dt) == expected)
118118 // usingDataFusionParquetExec does not support CometBatchScanExec yet
119119 if (! usingDataFusionParquetExec(conf)) {
120120 assert(CometBatchScanExec .isTypeSupported(dt) == expected)
121121 }
122- }
122+ }
123123 }
124124
125125 test(" unsupported Spark schema" ) {
You can’t perform that action at this time.
0 commit comments