Skip to content

Commit

Permalink
[misc] skysql test suite correction
Browse files Browse the repository at this point in the history
  • Loading branch information
rusher committed Sep 10, 2020
1 parent 6601971 commit 49f14d6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/test/java/org/mariadb/jdbc/StatementTest.java
Expand Up @@ -780,5 +780,6 @@ public void ensureStreamingState() throws Exception {
assertFalse(rs.next());

assertFalse(prep.getMoreResults());
prep.close();
}
}
Expand Up @@ -347,7 +347,7 @@ public void testTimeUtcNow() throws SQLException {

@Test
public void testTimeOffsetNowUseServer() throws SQLException {
Assume.assumeFalse("true".equals(System.getenv("AURORA")));
Assume.assumeTrue(System.getenv("AURORA") == null || System.getenv("SKYSQL") == null);
try (Connection connection =
setConnection("&useLegacyDatetimeCode=false&serverTimezone=+5:00")) {
setSessionTimeZone(connection, "+5:00");
Expand Down

0 comments on commit 49f14d6

Please sign in to comment.