Branch: refs/heads/6.2
Home:
https://github.com/hibernate/hibernate-orm
Commit: b0e84c58fd100b35677b8661028f3b112e671b1a
https://github.com/hibernate/hibernate-orm/commit/b0e84c58fd100b35677b866...
Author: Gavin <gavin(a)hibernate.org>
Date: 2023-05-22 (Mon, 22 May 2023)
Changed paths:
M hibernate-core/src/main/java/org/hibernate/dialect/OracleDialect.java
Log Message:
-----------
HHH-16650 fix for native queries with "unknown" numeric types on Oracle
Oracle reports FLOAT/DOUBLE PRECISION as NUMBER, which is wrong. The
workaround was to look at the scale, which it reports as -127 for
FLOAT. But certain other expression also get scale -127, and this
could cause truncation of least-significant digits when we read them
into a Java Double.
Commit: e82604051f05edf2effca6c3269f90dc1542bb19
https://github.com/hibernate/hibernate-orm/commit/e82604051f05edf2effca6c...
Author: Gavin <gavin(a)hibernate.org>
Date: 2023-05-22 (Mon, 22 May 2023)
Changed paths:
A
hibernate-core/src/test/java/org/hibernate/orm/test/query/OracleNumericTypesTest.java
Log Message:
-----------
HHH-16650 add test
Compare:
https://github.com/hibernate/hibernate-orm/compare/87f0dfc9d672...e826040...