Skip to content

Commit

Permalink
HHH-17632 AssertionError when updating entity with lazy loading prope…
Browse files Browse the repository at this point in the history
…rty and bytecode enhancement
  • Loading branch information
dreab8 authored and beikov committed Jan 12, 2024
1 parent 8f3cc24 commit 899bf7b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1093,7 +1093,7 @@ private void applyTableUpdateDetails(
final AttributeAnalysis attributeAnalysis = updateValuesAnalysis.attributeAnalyses.get( attributeIndex );

if ( attributeAnalysis.includeInSet() ) {
assert updateValuesAnalysis.tablesNeedingUpdate.contains( tableMapping );
assert updateValuesAnalysis.tablesNeedingUpdate.contains( tableMapping ) || updateValuesAnalysis.tablesNeedingDynamicUpdate.contains( tableMapping );
applyAttributeUpdateDetails(
entity,
updateGroupBuilder,
Expand Down

0 comments on commit 899bf7b

Please sign in to comment.