Description
PostgreSQL doesn't natively support OffsetTime. While it has a column type time with time zone it actually only stores the time as UTC time.
On the JDBC level we need to use java.sql.Time with the servers local offset. The rest will be converted automatically inside the JDBC driver.