hibernate-orm
hibernate-orm copied to clipboard
Hibernate's core Object/Relational Mapping functionality
MySQL fails for tinyint, smallint, integer and bigint, but works correctly for mediumint. MariaDB fails for bigint, but works correctly for all others. The MariaDB implementation of `ResultSetMetaData#getColumnType()` differs from...
https://hibernate.atlassian.net/browse/HHH-19496 I didn't use the version catalog for this dependency as it requires a zip classifier and I have no idea how to set it there 🙈😕 Also applied the...
Some updates from an Oracle employee to the Oracle TimesTen Community dialect. ( Hibernate 6.6 ) In TimesTenDialect.java + Adding more datatypes into columnType() + Added more SQL functions support...
[Please describe here what your change is about] ---------------------- By submitting this pull request, I confirm that my contribution is made under the terms of the [Apache 2.0 license](https://www.apache.org/licenses/LICENSE-2.0.txt) and...
This commit fixes HHH-19076. This bug is not trivial to reproduce since it requires a very specific entity setup: - There must be at least 2 entities - Both entities...
---------------------- By submitting this pull request, I confirm that my contribution is made under the terms of the [Apache 2.0 license](https://www.apache.org/licenses/LICENSE-2.0.txt) and can be relicensed under the terms of the...
Reproducer for https://hibernate.atlassian.net/browse/HHH-19076 ---------------------- By submitting this pull request, I confirm that my contribution is made under the terms of the [Apache 2.0 license](https://www.apache.org/licenses/LICENSE-2.0.txt) and can be relicensed under the...
As discussed, move new Dialect Support to community. see old PR to core https://github.com/hibernate/hibernate-orm/pull/10093 ---------------------- By submitting this pull request, I confirm that my contribution is made under the terms...
Following a discussion with the team today, to see how much work it would be to run the whole test suite with different default settings. cc @sebersole @gavinking ---------------------- By...
When a NOT is applied to an IN, such as `cq.select(root).where(root.get("customerType").in(List.of(i1, i2)))` and when i1, i2 are represented by more than one column or formula (let's call these a and...