Skip to content

Commit 1cc7def

Browse files
committed
HHH-17159 java.lang.StackOverflowError during Update on Entity with Embeddable and JSON
1 parent 8538781 commit 1cc7def

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hibernate-core/src/main/java/org/hibernate/query/sqm/sql/AggregateColumnAssignmentHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ private static void collectRootAggregates(
6464
final EmbeddableMappingType embeddableMappingType = (EmbeddableMappingType) mappedType;
6565
final SelectableMapping aggregateMapping = embeddableMappingType.getAggregateMapping();
6666
if ( aggregateMapping == null ) {
67-
collectRootAggregates( rootAggregates, mappingType );
67+
collectRootAggregates( rootAggregates, embeddableMappingType );
6868
}
6969
else {
7070
rootAggregates.put( aggregateMapping.getSelectablePath(), embeddableMappingType );

0 commit comments

Comments
 (0)