We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 733b555 commit d6f09d6Copy full SHA for d6f09d6
hibernate-core/src/main/java/org/hibernate/boot/model/process/spi/MetadataBuildingProcess.java
@@ -609,6 +609,11 @@ public TypeConfiguration getTypeConfiguration() {
609
public void contributeAttributeConverter(Class<? extends AttributeConverter<?, ?>> converterClass) {
610
metadataCollector.getConverterRegistry().addAttributeConverter( converterClass );
611
}
612
+
613
+ @Override
614
+ public void contributeType(CompositeUserType<?> type) {
615
+ options.getCompositeUserTypes().add( type );
616
+ }
617
};
618
619
if ( options.getWrapperArrayHandling() == WrapperArrayHandling.LEGACY ) {
0 commit comments