We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f33afc6 commit 9201ee7Copy full SHA for 9201ee7
hibernate-core/src/main/java/org/hibernate/boot/model/internal/PropertyContainer.java
@@ -19,6 +19,7 @@
19
20
import org.hibernate.AnnotationException;
21
import org.hibernate.annotations.JavaType;
22
+import org.hibernate.annotations.JdbcTypeCode;
23
import org.hibernate.annotations.ManyToAny;
24
import org.hibernate.annotations.Target;
25
import org.hibernate.annotations.Type;
@@ -436,6 +437,9 @@ else if ( property.isAnnotationPresent( Type.class ) ) {
436
437
else if ( property.isAnnotationPresent( JavaType.class ) ) {
438
return true;
439
}
440
+ else if ( property.isAnnotationPresent( JdbcTypeCode.class ) ) {
441
+ return true;
442
+ }
443
else if ( property.isAnnotationPresent( Target.class ) ) {
444
445
0 commit comments