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 6565import org .hibernate .type .descriptor .jdbc .JdbcType ;
6666import org .hibernate .type .descriptor .jdbc .JdbcTypeIndicators ;
6767import org .hibernate .type .internal .BasicTypeImpl ;
68+ import org .hibernate .type .internal .ConvertedBasicTypeImpl ;
6869import org .hibernate .type .spi .TypeConfiguration ;
6970import org .hibernate .type .spi .TypeConfigurationAware ;
7071import org .hibernate .usertype .DynamicParameterizedType ;
@@ -849,7 +850,8 @@ public TypeConfiguration getTypeConfiguration() {
849850// return EnumeratedValueResolution.fromName( name, stdIndicators, context );
850851// }
851852
852- if ( name .startsWith ( BasicTypeImpl .EXTERNALIZED_PREFIX ) ) {
853+ if ( name .startsWith ( BasicTypeImpl .EXTERNALIZED_PREFIX )
854+ || name .startsWith ( ConvertedBasicTypeImpl .EXTERNALIZED_PREFIX ) ) {
853855 return getNamedBasicTypeResolution (
854856 bootstrapContext .resolveAdHocBasicType ( name ),
855857 explicitMutabilityPlanAccess ,
You can’t perform that action at this time.
0 commit comments