Skip to content

Commit 644d7f1

Browse files
committed
Fix test failure.
1 parent 71133e1 commit 644d7f1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

external/docker-integration-tests/src/test/scala/org/apache/spark/sql/jdbc/OracleIntegrationSuite.scala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -446,9 +446,9 @@ class OracleIntegrationSuite extends DockerJDBCIntegrationSuite with SharedSpark
446446
case LogicalRelation(JDBCRelation(_, parts, _), _, _, _) =>
447447
val whereClauses = parts.map(_.asInstanceOf[JDBCPartition].whereClause).toSet
448448
assert(whereClauses === Set(
449-
""""D" < '2018-07-10' or "D" is null""",
450-
""""D" >= '2018-07-10' AND "D" < '2018-07-14'""",
451-
""""D" >= '2018-07-14'"""))
449+
""""D" < '2018-07-11' or "D" is null""",
450+
""""D" >= '2018-07-11' AND "D" < '2018-07-15'""",
451+
""""D" >= '2018-07-15'"""))
452452
}
453453
assert(df1.collect.toSet === expectedResult)
454454

0 commit comments

Comments
 (0)