File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
sql/pipelines/src/test/scala/org/apache/spark/sql/pipelines/graph Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -435,7 +435,7 @@ class MaterializeTablesSuite extends BaseCoreExecutionTest {
435
435
val table2 = catalog.loadTable(identifier)
436
436
assert(
437
437
table2.columns() sameElements CatalogV2Util
438
- .structTypeToV2Columns(new StructType ().add(" x " , BooleanType ).add(" y " , IntegerType ))
438
+ .structTypeToV2Columns(new StructType ().add(" y " , IntegerType ).add(" x " , BooleanType ))
439
439
)
440
440
assert(table2.partitioning().toSeq == Seq (Expressions .identity(" x" )))
441
441
@@ -457,7 +457,7 @@ class MaterializeTablesSuite extends BaseCoreExecutionTest {
457
457
val table3 = catalog.loadTable(identifier)
458
458
assert(
459
459
table3.columns() sameElements CatalogV2Util
460
- .structTypeToV2Columns(new StructType ().add(" x " , BooleanType ).add(" y " , IntegerType ))
460
+ .structTypeToV2Columns(new StructType ().add(" y " , IntegerType ).add(" x " , BooleanType ))
461
461
)
462
462
assert(table3.partitioning().toSeq == Seq (Expressions .identity(" x" )))
463
463
}
You can’t perform that action at this time.
0 commit comments