HHH-17460 - Ongoing JPA 32 work

This commit is contained in:
Steve Ebersole 2024-03-26 09:18:10 -05:00
parent ce7c0d7df6
commit 38de392b2b
1 changed files with 1 additions and 1 deletions

View File

@ -579,7 +579,7 @@ public class PropertyBinder {
// see if inFlightPropertyDataList already contains a PropertyData for this name, // see if inFlightPropertyDataList already contains a PropertyData for this name,
// and if so, skip it... // and if so, skip it...
for ( PropertyData propertyData : inFlightPropertyDataList ) { for ( PropertyData propertyData : inFlightPropertyDataList ) {
if ( propertyData.getPropertyName().equals( property.getName() ) ) { if ( propertyData.getPropertyName().equals( property.resolveAttributeName() ) ) {
checkIdProperty( property, propertyData ); checkIdProperty( property, propertyData );
// EARLY EXIT!!! // EARLY EXIT!!!
return 0; return 0;