"join fetch" on mapped-by association is ignored when using bytecode enhancement

Description

With bytecode enhancement enabled, with a Person entity that has a lazy one-to-one association to a Vehicle entity, when running this query:

"select p from Person p left join fetch p.vehicle"

If Vehicle is the owner of the association, the resulting Person instances won't have their vehicle property initialized.

Calling the getter will initialize the association, so the problem is only visible if you have a look at the number of SQL statements, or if you call the getter after the session was closed (then lazy-loading fails).

This looks like a regression from ORM, 5.4 where this used to work correctly. I'll submit a PR with a reproducer and hopefully a fix soon.

Reported on Quarkus: https://github.com/quarkusio/quarkus/issues/17710

Activity

Show:
Fixed

Details

Assignee

Reporter

Components

Fix versions

Affects versions

Priority

Created June 7, 2021 at 8:38 AM
Updated June 14, 2021 at 3:36 PM
Resolved June 9, 2021 at 3:02 PM