Skip to content

Commit e455cb3

Browse files
committed
HHH-19542: Use the property.value table instead of the columns table, which in case of a nested component, was null.
1 parent be91244 commit e455cb3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hibernate-core/src/main/java/org/hibernate/boot/model/internal/EmbeddableBinder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -981,7 +981,7 @@ static Component createEmbeddable(
981981
MetadataBuildingContext context) {
982982
final Component component = new Component( context, propertyHolder.getPersistentClass() );
983983
component.setEmbedded( isComponentEmbedded );
984-
// yuk
984+
//yuk
985985
component.setTable( propertyHolder.getTable() );
986986
if ( isIdentifierMapper
987987
|| isComponentEmbedded && inferredData.getPropertyName() == null ) {

0 commit comments

Comments
 (0)