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 7070import org .hibernate .type .descriptor .jdbc .JdbcType ;
7171import org .hibernate .type .descriptor .jdbc .JdbcTypeIndicators ;
7272import org .hibernate .type .internal .BasicTypeImpl ;
73+ import org .hibernate .type .internal .ConvertedBasicTypeImpl ;
7374import org .hibernate .type .spi .TypeConfiguration ;
7475import org .hibernate .type .spi .TypeConfigurationAware ;
7576import org .hibernate .usertype .DynamicParameterizedType ;
@@ -868,7 +869,8 @@ public TypeConfiguration getTypeConfiguration() {
868869// return EnumeratedValueResolution.fromName( name, stdIndicators, context );
869870// }
870871
871- if ( name .startsWith ( BasicTypeImpl .EXTERNALIZED_PREFIX ) ) {
872+ if ( name .startsWith ( BasicTypeImpl .EXTERNALIZED_PREFIX )
873+ || name .startsWith ( ConvertedBasicTypeImpl .EXTERNALIZED_PREFIX ) ) {
872874 final BasicType <Object > basicType = context .getBootstrapContext ().resolveAdHocBasicType ( name );
873875 return new NamedBasicTypeResolution <>(
874876 basicType .getJavaTypeDescriptor (),
You can’t perform that action at this time.
0 commit comments