Branch: refs/heads/main
Home:
https://github.com/hibernate/hibernate-search
Commit: 0a0b6603d4149967d93b32e4f7696d3b1303e67f
https://github.com/hibernate/hibernate-search/commit/0a0b6603d4149967d93b...
Author: Yoann Rodière <yoann(a)hibernate.org>
Date: 2023-02-28 (Tue, 28 Feb 2023)
Changed paths:
M orm6/integrationtest/mapper/orm/ant-src-changes.patch
Log Message:
-----------
HSEARCH-4721 Re-enable tests disabled because of HHH-15606/HHH-15967
Commit: 40ef8a376dd3c890234d4ed32f9545c7001aeaaf
https://github.com/hibernate/hibernate-search/commit/40ef8a376dd3c890234d...
Author: Yoann Rodière <yoann(a)hibernate.org>
Date: 2023-02-28 (Tue, 28 Feb 2023)
Changed paths:
M
integrationtest/mapper/orm/src/test/java/org/hibernate/search/integrationtest/mapper/orm/automaticindexing/association/bytype/onetoone/ownedbycontained/AutomaticIndexingOneToOneOwnedByContainedLazyOnContainedSideIT.java
M
integrationtest/mapper/orm/src/test/java/org/hibernate/search/integrationtest/mapper/orm/automaticindexing/association/bytype/onetoone/ownedbycontained/AutomaticIndexingOneToOneOwnedByContainedLazyOnContainingSideIT.java
M
integrationtest/mapper/orm/src/test/java/org/hibernate/search/integrationtest/mapper/orm/automaticindexing/association/bytype/onetoone/ownedbycontaining/AutomaticIndexingOneToOneOwnedByContainingLazyOnContainedSideIT.java
M
integrationtest/mapper/orm/src/test/java/org/hibernate/search/integrationtest/mapper/orm/automaticindexing/association/bytype/onetoone/ownedbycontaining/AutomaticIndexingOneToOneOwnedByContainingLazyOnContainingSideIT.java
Log Message:
-----------
HSEARCH-4721 Use lazy groups in lazy one-to-one tests
To avoid crazy lazy loading... Without this, Hibernate ORM would
trigger lazy loading of *all* associations as soon as *one* association
gets loaded. In ORM 5 that would mean one query per association, and in
ORM 6 a crazy amount of joins, which would lead to problems with
MySQL/MariaDB.
This problem is specific to @OneToOne.
See also
https://hibernate.atlassian.net/browse/HHH-16219
Compare:
https://github.com/hibernate/hibernate-search/compare/9c7a73a2f270...40ef...