Refresh with PESSIMISTIC_WRITE ignored for lazy loaded entity

Description

When trying to lock a lazy loaded entity with em.refresh(e, LockModeType.PESSIMISTIC_WRITE);, Hibernate seemingly does nothing (no SQL / select for update is executed).

This only happens if the entity was not accessed prior to locking / refreshing the entity. As soon as an attribute is read, the refresh executes as expected. This behavior makes sense for a regular refresh (the entity wasn't yet loaded after all). However, this is not what I would expect if I specifically ask JPA to lock the entity with the refresh. Here, the select for update should be executed unconditionally.

Downstream quarkus bug:

Test case PR:

Activity

Show:
Fixed

Details

Assignee

Reporter

Sprint

Fix versions

Affects versions

Priority

Created November 7, 2023 at 9:22 AM
Updated January 18, 2024 at 1:38 PM
Resolved January 9, 2024 at 11:14 AM