mirror of
https://github.com/hibernate/hibernate-orm
synced 2025-02-10 21:24:49 +00:00
HHH-17644 Mapping of generic types in single table inheritance depends on lexicographical order of parent and child classnames
This commit is contained in:
parent
f33afc66bf
commit
9201ee7109
@ -19,6 +19,7 @@
|
||||
|
||||
import org.hibernate.AnnotationException;
|
||||
import org.hibernate.annotations.JavaType;
|
||||
import org.hibernate.annotations.JdbcTypeCode;
|
||||
import org.hibernate.annotations.ManyToAny;
|
||||
import org.hibernate.annotations.Target;
|
||||
import org.hibernate.annotations.Type;
|
||||
@ -436,6 +437,9 @@ else if ( property.isAnnotationPresent( Type.class ) ) {
|
||||
else if ( property.isAnnotationPresent( JavaType.class ) ) {
|
||||
return true;
|
||||
}
|
||||
else if ( property.isAnnotationPresent( JdbcTypeCode.class ) ) {
|
||||
return true;
|
||||
}
|
||||
else if ( property.isAnnotationPresent( Target.class ) ) {
|
||||
return true;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user