dengziming commented on code in PR #51686: URL: https://github.com/apache/spark/pull/51686#discussion_r2241897831
########## sql/core/src/test/scala/org/apache/spark/sql/jdbc/v2/JDBCV2JoinPushdownIntegrationSuiteBase.scala: ########## @@ -657,7 +657,7 @@ trait JDBCV2JoinPushdownIntegrationSuiteBase withSQLConf(SQLConf.DATA_SOURCE_V2_JOIN_PUSHDOWN.key -> "true") { val df = sql(sqlQuery) val row = df.collect()(0) - assert(row == Row(0, 1, 2, 3, 0, -1, -2, -3)) + assert(row.toString == Row(0, 1, 2, 3, 0, -1, -2, -3).toString) Review Comment: It seems that Oracle will use `DecimalType`, so we can't compare Row directly. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org For additional commands, e-mail: reviews-h...@spark.apache.org