Using JOOQ 3.10.1, I believe that the javaTimeTypes flag is on by default for the code generator.
I have a table in a PostgreSQL database with a date column and a time with time zone column:
- the
time with time zonecolumn becomes anOffsetDateTimein the record class, as expected. - the
datebecomesjava.sql.Datein the record class when I would have expected aLocalDate.
Am I missing anything here?
LocalDateConverter: jooq.org/doc/3.7/manual/sql-building/queryparts/custom-bindings .