We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b233d09 commit 9154463Copy full SHA for 9154463
sql/core/src/test/scala/org/apache/spark/sql/DataFrameSuite.scala
@@ -1591,11 +1591,11 @@ class DataFrameSuite extends QueryTest with SharedSQLContext {
1591
val dates = Seq(
1592
(BigDecimal.valueOf(1), new Timestamp(2)),
1593
(BigDecimal.valueOf(4), new Timestamp(5))
1594
- ).toDF("timestamp", "decimal")
+ ).toDF("decimal", "timestamp")
1595
1596
val widenTypedRows = Seq(
1597
(10.5D, "string")
1598
1599
1600
dates.union(widenTypedRows).collect()
1601
dates.except(widenTypedRows).collect()
0 commit comments