File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
hibernate-core/src/main/java/org/hibernate/mapping Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change 70
70
import org .hibernate .type .descriptor .jdbc .JdbcType ;
71
71
import org .hibernate .type .descriptor .jdbc .JdbcTypeIndicators ;
72
72
import org .hibernate .type .internal .BasicTypeImpl ;
73
+ import org .hibernate .type .internal .ConvertedBasicTypeImpl ;
73
74
import org .hibernate .type .spi .TypeConfiguration ;
74
75
import org .hibernate .type .spi .TypeConfigurationAware ;
75
76
import org .hibernate .usertype .DynamicParameterizedType ;
@@ -868,7 +869,8 @@ public TypeConfiguration getTypeConfiguration() {
868
869
// return EnumeratedValueResolution.fromName( name, stdIndicators, context );
869
870
// }
870
871
871
- if ( name .startsWith ( BasicTypeImpl .EXTERNALIZED_PREFIX ) ) {
872
+ if ( name .startsWith ( BasicTypeImpl .EXTERNALIZED_PREFIX )
873
+ || name .startsWith ( ConvertedBasicTypeImpl .EXTERNALIZED_PREFIX ) ) {
872
874
final BasicType <Object > basicType = context .getBootstrapContext ().resolveAdHocBasicType ( name );
873
875
return new NamedBasicTypeResolution <>(
874
876
basicType .getJavaTypeDescriptor (),
You can’t perform that action at this time.
0 commit comments