HHH-17262 JdbcTypeRecommendationException when using <mapping-file> of persistence.xml file when using <mapping-file> of persistence.xml file

This commit is contained in:
Andrea Boriero 2023-10-09 12:44:48 +02:00 committed by Christian Beikov
parent 697b74a807
commit 8127428188
1 changed files with 4 additions and 0 deletions

View File

@ -1630,6 +1630,10 @@ public class JPAXMLOverriddenAnnotationReader implements AnnotationReader {
addIfNotNull( annotationList, annotation );
annotation = getPhysicalAnnotation( AssociationOverrides.class );
addIfNotNull( annotationList, annotation );
annotation = getPhysicalAnnotation( Type.class );
addIfNotNull( annotationList, annotation );
annotation = getPhysicalAnnotation( JdbcTypeCode.class );
addIfNotNull( annotationList, annotation );
}
}