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 65
65
import org .hibernate .type .descriptor .jdbc .JdbcType ;
66
66
import org .hibernate .type .descriptor .jdbc .JdbcTypeIndicators ;
67
67
import org .hibernate .type .internal .BasicTypeImpl ;
68
+ import org .hibernate .type .internal .ConvertedBasicTypeImpl ;
68
69
import org .hibernate .type .spi .TypeConfiguration ;
69
70
import org .hibernate .type .spi .TypeConfigurationAware ;
70
71
import org .hibernate .usertype .DynamicParameterizedType ;
@@ -849,7 +850,8 @@ public TypeConfiguration getTypeConfiguration() {
849
850
// return EnumeratedValueResolution.fromName( name, stdIndicators, context );
850
851
// }
851
852
852
- if ( name .startsWith ( BasicTypeImpl .EXTERNALIZED_PREFIX ) ) {
853
+ if ( name .startsWith ( BasicTypeImpl .EXTERNALIZED_PREFIX )
854
+ || name .startsWith ( ConvertedBasicTypeImpl .EXTERNALIZED_PREFIX ) ) {
853
855
return getNamedBasicTypeResolution (
854
856
bootstrapContext .resolveAdHocBasicType ( name ),
855
857
explicitMutabilityPlanAccess ,
You can’t perform that action at this time.
0 commit comments