File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
sql/hive/src/test/scala/org/apache/spark/sql/parquet Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -30,8 +30,8 @@ import org.apache.spark.sql.hive.test.TestHive._
30
30
// The data where the partitioning key exists only in the directory structure.
31
31
case class ParquetData (intField : Int , stringField : String )
32
32
// The data that also includes the partitioning key
33
- case class ParquetDataWithKey (p: Int , intField : Int , stringField : String )
34
- case class StructContainer (intStructField : Int , stringStructField : String )
33
+ case class ParquetDataWithKey (p : Int , intField : Int , stringField : String )
34
+ case class StructContainer (intStructField : Int , stringStructField : String )
35
35
36
36
case class ParquetDataWithComplexTypes (
37
37
intField : Int ,
@@ -87,7 +87,7 @@ class ParquetMetastoreSuite extends ParquetTest {
87
87
(
88
88
intField INT,
89
89
stringField STRING,
90
- structField STRUCT<intStructField : INT, stringStructField : STRING>,
90
+ structField STRUCT<intStructField: INT, stringStructField: STRING>,
91
91
arrayField ARRAY<INT>
92
92
)
93
93
PARTITIONED BY (p int)
@@ -103,7 +103,7 @@ class ParquetMetastoreSuite extends ParquetTest {
103
103
(
104
104
intField INT,
105
105
stringField STRING,
106
- structField STRUCT<intStructField : INT, stringStructField : STRING>,
106
+ structField STRUCT<intStructField: INT, stringStructField: STRING>,
107
107
arrayField ARRAY<INT>
108
108
)
109
109
PARTITIONED BY (p int)
You can’t perform that action at this time.
0 commit comments