@@ -63,7 +63,7 @@ class VeloxParquetWriteSuite extends VeloxWholeStageTransformerSuite with WriteU
6363 withTempPath {
6464 f =>
6565 val path = f.getCanonicalPath
66- // TODO: maybe remove constant complex type restriction in WriteFilesExecTransformer (Spark 3.4+)
66+ // TODO: maybe remove constant complex type restriction (Spark 3.4+)
6767 checkNativeWrite(
6868 s " INSERT OVERWRITE DIRECTORY ' $path' USING PARQUET SELECT array(struct(1), null) as var1 " ,
6969 expectNative = ! isSparkVersionGE(" 3.4" ))
@@ -135,7 +135,7 @@ class VeloxParquetWriteSuite extends VeloxWholeStageTransformerSuite with WriteU
135135 test(" test insert into with array type" ) {
136136 withTable(" t" , " src" ) {
137137 spark.sql(" CREATE TABLE src (ids ARRAY<INT>) USING PARQUET" )
138- // TODO: maybe remove constant complex type restriction in WriteFilesExecTransformer (Spark 3.4+)
138+ // TODO: maybe remove constant complex type restriction (Spark 3.4+)
139139 checkNativeWrite(
140140 " INSERT INTO src SELECT array(1, 2, 3)" ,
141141 expectNative = ! isSparkVersionGE(" 3.4" ))
@@ -148,7 +148,7 @@ class VeloxParquetWriteSuite extends VeloxWholeStageTransformerSuite with WriteU
148148 test(" test insert into with map type" ) {
149149 withTable(" t" , " src" ) {
150150 spark.sql(" CREATE TABLE src (kv MAP<STRING, INT>) USING PARQUET" )
151- // TODO: maybe remove constant complex type restriction in WriteFilesExecTransformer (Spark 3.4+)
151+ // TODO: maybe remove constant complex type restriction (Spark 3.4+)
152152 checkNativeWrite(
153153 " INSERT INTO src SELECT map('a', 1, 'b', 2)" ,
154154 expectNative = ! isSparkVersionGE(" 3.4" ))
0 commit comments