threeten-jpa
threeten-jpa copied to clipboard
JPA attribute converters for JSR-310 dates and times
Bumps [postgresql](https://github.com/pgjdbc/pgjdbc) from 42.3.4 to 42.4.1. Release notes Sourced from postgresql's releases. 42.4.0 What's Changed Enhancement: Made TimestampUtils.utcTz static and renamed to UTC_TIMEZONE by @svendiedrichsen in pgjdbc/pgjdbc#2519 fix: return correct...
Calendar mapping seems broken in EclipseLink under Oracle, we should probably report a bug. ```java @Temporal(TemporalType.TIMESTAMP) @Column(name = "CALENDAR_COLUMN") private Calendar calendar; ```
We are getting deprecation warnings for `UserType`.
AssertionFailedError: expected: but was:
Support Duration and Period with JDBC 4.2 because ojdbc8 supports them.
OpenJPA 3 should now support JPA 2.1
Firebird has a resolution of 100 microseconds SQL Server has a resolution of 100 nanoseconds
We should probably file a bug.
Oracle also supports the `TIMESTAMP WITH LOCAL TIME ZONE`, where the database stores the time normalized to the database timezone. Upon querying, the time is converted into the session timezone...
I'm am using org.eclipse.persistence:eclipselink:2.6.4 with com.oracle.jdbc:ojdbc7:12.1.0.2 and this is my `TIMESTAMP WITH TIMEZONE` entity field: ```java @Temporal(TemporalType.TIMESTAMP) @Column(name = "CREATION_DATE") private ZonedDateTime creationDate; ``` On querying the database I get:...