Skip to content

Commit

Permalink
HHH-16820 updated migration guide
Browse files Browse the repository at this point in the history
  • Loading branch information
dreab8 committed Jun 27, 2023
1 parent 9abb3b4 commit 39db093
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions migration-guide.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -363,3 +363,17 @@ but has to be changed to the proper temporal literal now
```sql
from MyEntity e where e.temporalAttribute > date 2020-01-01
```

[[batch-fetching-changes]]
== Batch Fetching and LockMode

When LockMode is greater than READ Hibernate does not execute the batch fetching so existing uninitialized proxies will not be initialized.
This because the lock mode is different from the one of the proxies in the batch fetch queue.

E.g.

`
MyEntity proxy = session.getReference( MyEntity.class, 1 );
MyEntity myEntity = session.find(MyEntity.class, 2, LockMode.WRITE);
`
only the entity with id equals to 2 will be loaded but the proxy will not be initialized.

0 comments on commit 39db093

Please sign in to comment.