beliefer commented on code in PR #50112: URL: https://github.com/apache/spark/pull/50112#discussion_r1978557821
########## connector/docker-integration-tests/src/test/scala/org/apache/spark/sql/jdbc/v2/MySQLIntegrationSuite.scala: ########## @@ -195,17 +198,19 @@ class MySQLIntegrationSuite extends DockerJDBCIntegrationV2Suite with V2JDBCTest val df4 = sql(s"SELECT name FROM $tbl WHERE hour(time1) = 0 AND minute(time1) = 0") checkFilterPushed(df4) val rows4 = df4.collect() - assert(rows4.length === 2) + assert(rows4.length === 3) assert(rows4(0).getString(0) === "amy") assert(rows4(1).getString(0) === "alex") + assert(rows4(2).getString(0) === "tom") val df5 = sql(s"SELECT name FROM $tbl WHERE " + - "extract(WEEk from date1) > 10 AND extract(YEAROFWEEK from date1) = 2022") + "extract(WEEK from date1) > 10 AND extract(YEAR from date1) = 2022") Review Comment: This change follows the change from https://github.com/apache/spark/pull/50101 -- 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