hibernate-orm
hibernate-orm copied to clipboard
Hibernate's core Object/Relational Mapping functionality
I have the impression that SingleTableEntityPersister#getTableNameForColumn does not work with attributes that use another table with @SecondaryTable because the index of the table is not always 0 (even though singletable...
https://hibernate.atlassian.net/browse/HHH-18837 Backport of https://github.com/hibernate/hibernate-orm/pull/10296. ---------------------- 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...
https://hibernate.atlassian.net/browse/HHH-18837 Backport of https://github.com/hibernate/hibernate-orm/pull/10296. ---------------------- 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...
Jira issue [HHH-19396](https://hibernate.atlassian.net/browse/HHH-19396) When creating `SqlAstQueryPartProcessingStateImpl` in method `org.hibernate.query.sqm.sql.BaseSqmToSqlAstConverter#visitQuerySpec` parameter `deduplicateSelectionItems` must be set to `false` (see comment in moved code block) When `selectStatement` contains same column more than once...
https://hibernate.atlassian.net/browse/HHH-19542 The change is about using either the secondary table of a component, by looking at the first @Column available (to avoid nested component to be picked up), or fall-back...
HHH-19551 - Address deficiencies in pessimistic locking [Please describe here what your change is about] ---------------------- By submitting this pull request, I confirm that my contribution is made under the...
Yet another rebase of #10323 to resolve conflicts and run tests. ---------------------- By submitting this pull request, I confirm that my contribution is made under the terms of the [Apache...
https://hibernate.atlassian.net/browse/HHH-19548 ---------------------- 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...
[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...
Adds support to SQL Server 2008 and above for more performant IN-list queries. Current behavior generates queries like: ``` WHERE ((T.FIELD1=? AND T.FIELD2=?) OR (T.FIELD1=? AND T.FIELD2=?) OR ... (T.FIELD1=?...