Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[CONJ-225] Date resultset.getString correction when mysql DB
  • Loading branch information
rusher committed Nov 30, 2015
1 parent 455f36f commit fce8e4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/java/org/mariadb/jdbc/DateTest.java
Expand Up @@ -433,7 +433,7 @@ public void timestampMillisecondsTest() throws SQLException {
if (isMariadbServer) {
assertTrue("2013-07-18 13:44:22.123456".equals(rs.getString(2)));
} else {
assertTrue("2013-07-18 13:44:22".equals(rs.getString(2)));
assertTrue("2013-07-18 13:44:22.0".equals(rs.getString(2)));
}
assertTrue(rs.next());
Timestamp readTs = rs.getTimestamp(2);
Expand Down

0 comments on commit fce8e4c

Please sign in to comment.