|
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,
|
|
0 commit comments