Assertion failures are similar to:
java.lang.AssertionError: Values written by Hibernate ORM should match the original value (same day, hour, ...) expected:<02:00:00> but was:<1900-01-01 02:00:00.0>
In both {{LocalTimeTest#getActualJdbcValue}} and {{OffsetTimeTest#getActualJdbcValue}} both return {{resultSet.getTimestamp( columnIndex )}}.
They should Changing both to return {{resultSet.getTime( columnIndex )}} works on SQL Server, but fails on H2 . |
|