You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
HHH-14424 When enhanced as a proxy is enabled with dirty checking, on flush uninitialized entities containing collections are updated and all the fields are set to null
Copy file name to clipboardExpand all lines: hibernate-core/src/main/java/org/hibernate/bytecode/enhance/spi/interceptor/EnhancementAsProxyLazinessInterceptor.java
+21-2Lines changed: 21 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -35,6 +35,7 @@ public class EnhancementAsProxyLazinessInterceptor extends AbstractLazyLoadInter
35
35
36
36
privatefinalbooleaninLineDirtyChecking;
37
37
privateSet<String> writtenFieldNames;
38
+
privateSet<String> collectionAttributeNames;
38
39
39
40
privateStatusstatus;
40
41
@@ -57,11 +58,22 @@ public EnhancementAsProxyLazinessInterceptor(
0 commit comments