Branch: refs/heads/wip/6.0
Home:
https://github.com/hibernate/hibernate-orm
Commit: 9d33bc39fb187bbfa666b6224b53007b425629cf
https://github.com/hibernate/hibernate-orm/commit/9d33bc39fb187bbfa666b62...
Author: Gavin King <gavin(a)hibernate.org>
Date: 2021-02-04 (Thu, 04 Feb 2021)
Changed paths:
M hibernate-core/src/main/java/org/hibernate/dialect/H2Dialect.java
Log Message:
-----------
prefer localtime, localtimestamp on H2 1.4.200
As suggested by @famod we need to use localtime instead
or current_time because of changes in H2.
See
https://github.com/hibernate/hibernate-orm/pull/3412
Commit: fbba9ed4a8cd33d1c2079a71fc27048954891473
https://github.com/hibernate/hibernate-orm/commit/fbba9ed4a8cd33d1c2079a7...
Author: Gavin King <gavin(a)hibernate.org>
Date: 2021-02-04 (Thu, 04 Feb 2021)
Changed paths:
M hibernate-core/src/main/java/org/hibernate/dialect/Dialect.java
Log Message:
-----------
Javadoc for the current date/time/timestamp functions
Explain the difference between these various functions, and
how to correctly map them to SQL.
Commit: 0ecb05614f57b39bef829763facc5ecfe1b4c7ae
https://github.com/hibernate/hibernate-orm/commit/0ecb05614f57b39bef82976...
Author: Gavin King <gavin(a)hibernate.org>
Date: 2021-02-04 (Thu, 04 Feb 2021)
Changed paths:
M hibernate-core/src/main/java/org/hibernate/dialect/HSQLDialect.java
M hibernate-core/src/main/java/org/hibernate/dialect/PostgreSQLDialect.java
Log Message:
-----------
use localtime/localtimestamp on HSQL and Postgres
Since we don't need the TIME ZONE for our current_time
and current_timestamp functions, these are cleaner
mappings to SQL for these functions.
Compare:
https://github.com/hibernate/hibernate-orm/compare/ab5d350805ee...0ecb056...