You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This value is used to determine the size of the array used to create the ImmutableFetchList (see org.hibernate.sql.results.graph.internal.ImmutableFetchList#Builder)
66
+
The Fetch is inserted into the array at a position corresponding to its Fetchable key value.
67
+
*/
68
+
privatefinalintmaxFetchableKeyIndex;
64
69
65
70
publicCompoundNaturalIdMapping(
66
71
EntityMappingTypedeclaringType,
@@ -69,6 +74,14 @@ public CompoundNaturalIdMapping(
69
74
super( declaringType, isMutable( attributes ) );
70
75
this.attributes = attributes;
71
76
77
+
intmaxIndex = 0;
78
+
for ( SingularAttributeMappingattribute : attributes ) {
0 commit comments