HHH-8276 - Integrate LoadPlans into UniqueEntityLoader (PoC)
This commit is contained in:
parent
e1105fb6d3
commit
ba0d14546c
|
@ -3859,6 +3859,11 @@ public abstract class AbstractEntityPersister
|
|||
createLoaders();
|
||||
createUniqueKeyLoaders();
|
||||
createQueryLoader();
|
||||
|
||||
doPostInstantiate();
|
||||
}
|
||||
|
||||
protected void doPostInstantiate() {
|
||||
}
|
||||
|
||||
//needed by subclasses to override the createLoader strategy
|
||||
|
|
|
@ -1025,7 +1025,6 @@ public class SingleTableEntityPersister extends AbstractEntityPersister {
|
|||
}
|
||||
|
||||
protected void doPostInstantiate() {
|
||||
super.postInstantiate();
|
||||
if (hasSequentialSelects) {
|
||||
String[] entityNames = getSubclassClosure();
|
||||
for ( int i=1; i<entityNames.length; i++ ) {
|
||||
|
|
Loading…
Reference in New Issue