HHH-11560 - Move validation of Lob/ElementCollection after determining property is not-audited.
This commit is contained in:
parent
a49790537c
commit
6674cddf3d
|
@ -512,13 +512,13 @@ public class AuditedPropertiesReader {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
validateLobMappingSupport( property );
|
|
||||||
|
|
||||||
final String propertyName = propertyNamePrefix + property.getName();
|
final String propertyName = propertyNamePrefix + property.getName();
|
||||||
if ( !this.checkAudited( property, propertyData,propertyName, allClassAudited, globalCfg.getModifiedFlagSuffix() ) ) {
|
if ( !this.checkAudited( property, propertyData,propertyName, allClassAudited, globalCfg.getModifiedFlagSuffix() ) ) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
validateLobMappingSupport( property );
|
||||||
|
|
||||||
propertyData.setName( propertyName );
|
propertyData.setName( propertyName );
|
||||||
propertyData.setBeanName( property.getName() );
|
propertyData.setBeanName( property.getName() );
|
||||||
propertyData.setAccessType( accessType );
|
propertyData.setAccessType( accessType );
|
||||||
|
|
Loading…
Reference in New Issue