HHH-17211 Complete AnyValuedResult fetches initialization
This commit is contained in:
parent
46def53422
commit
e950f2ca27
|
@ -358,7 +358,8 @@ public class DiscriminatedAssociationMapping implements MappingType, FetchOption
|
||||||
navigablePath,
|
navigablePath,
|
||||||
baseAssociationJtd,
|
baseAssociationJtd,
|
||||||
modelPart,
|
modelPart,
|
||||||
resultVariable
|
resultVariable,
|
||||||
|
creationState
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -462,9 +463,12 @@ public class DiscriminatedAssociationMapping implements MappingType, FetchOption
|
||||||
NavigablePath navigablePath,
|
NavigablePath navigablePath,
|
||||||
JavaType<?> baseAssociationJtd,
|
JavaType<?> baseAssociationJtd,
|
||||||
DiscriminatedAssociationModelPart fetchedPart,
|
DiscriminatedAssociationModelPart fetchedPart,
|
||||||
String resultVariable) {
|
String resultVariable,
|
||||||
|
DomainResultCreationState creationState) {
|
||||||
super( navigablePath, fetchedPart, baseAssociationJtd );
|
super( navigablePath, fetchedPart, baseAssociationJtd );
|
||||||
this.resultVariable = resultVariable;
|
this.resultVariable = resultVariable;
|
||||||
|
|
||||||
|
afterInitialize( creationState );
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in New Issue