Skip to content

Commit c255fe1

Browse files
committed
OracleJoinPushdownIntegrationSuite: [0,1,2,3,0,-1,-2,-3] did not equal [0,1,2,3,0,-1,-2,-3]
1 parent a732f8b commit c255fe1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sql/core/src/test/scala/org/apache/spark/sql/jdbc/v2/JDBCV2JoinPushdownIntegrationSuiteBase.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -657,7 +657,7 @@ trait JDBCV2JoinPushdownIntegrationSuiteBase
657657
withSQLConf(SQLConf.DATA_SOURCE_V2_JOIN_PUSHDOWN.key -> "true") {
658658
val df = sql(sqlQuery)
659659
val row = df.collect()(0)
660-
assert(row == Row(0, 1, 2, 3, 0, -1, -2, -3))
660+
assert(row.toString == Row(0, 1, 2, 3, 0, -1, -2, -3).toString)
661661

662662
assert(df.schema.fields.map(_.name) sameElements
663663
Array("id", "id_1", "id_2", "id_1_1", "id", "id_1", "id_2", "id_2_1"))

0 commit comments

Comments
 (0)