Issues
- Pessimistic Lock causes FOR UPDATE on outer join statementsHHH-14333Resolved issue: HHH-14333Sanne Grinovero
- Make it easier for Quarkus SPI to avoid loading XMLHHH-14332Resolved issue: HHH-14332Sanne Grinovero
- DirtinessTracker usage for enhanced entities doesn't respect mutable typesHHH-14329Resolved issue: HHH-14329Christian Beikov
- Add Query hint for specifying "query spaces" for native queriesHHH-14325Resolved issue: HHH-14325Steve Ebersole
- Add .gradletasknamecache to .gitignoreHHH-14324Resolved issue: HHH-14324Yoann Rodière
- HBM many-to-one property-ref broken since 5.3.2 due to HHH-12684HHH-14322Resolved issue: HHH-14322Christian Beikov
- Avoid closing datasource in AgroalConnectionProvider if datasource is not initializedHHH-14317Resolved issue: HHH-14317Guillaume Smet
- Avoid accessing state in DriverManagerConnectionProviderImpl if nullHHH-14316Resolved issue: HHH-14316Guillaume Smet
- Padded batch style entity loader ignores entity graphHHH-14312Resolved issue: HHH-14312Steve Ebersole
- Document hibernate.query.in_clause_parameter_paddingHHH-14310Resolved issue: HHH-14310Christian Beikov
- Improve `BulkOperationCleanupAction#affectedEntity`HHH-14309Resolved issue: HHH-14309Steve Ebersole
- Complex batch insert query stopped to workHHH-14288Resolved issue: HHH-14288Christian Beikov
- Broken 'with key(...)' operator on entity-key mapsHHH-14279Resolved issue: HHH-14279Christian Beikov
- Nested ID class using derived identifiers fails with strange AnnotationException: unable to find column reference in the @MapsId mapping: `game_id`HHH-14276Resolved issue: HHH-14276Christian Beikov
- An Entity A with a map collection having as index an Embeddable with a an association to the Entity A fails with a NPEHHH-14257Resolved issue: HHH-14257Andrea Boriero
- CVE-2020-25638 Potential for SQL injection on use_sql_comments logging enabledHHH-14225Resolved issue: HHH-14225Sanne Grinovero
- Upgrade Javassist to the latest versionHHH-14158Resolved issue: HHH-14158Christian Beikov
- getParameterValue() not working for collectionsHHH-13310Resolved issue: HHH-13310Andrea Boriero
18 of 18
Pessimistic Lock causes FOR UPDATE on outer join statements
Fixed
Description
Details
Assignee
Sanne GrinoveroSanne GrinoveroReporter
Sanne GrinoveroSanne GrinoveroComponents
Fix versions
Affects versions
Priority
Major
Details
Details
Assignee
Sanne Grinovero
Sanne GrinoveroReporter
Sanne Grinovero
Sanne GrinoveroComponents
Fix versions
Affects versions
Priority
Created November 17, 2020 at 6:46 PM
Updated November 17, 2020 at 9:20 PM
Resolved November 17, 2020 at 8:08 PM
Activity
Show:
As an unintended side effect of fixing https://hibernate.atlassian.net/browse/HHH-14271#icft=HHH-14271 , we now render the "FOR UPDATE" fragment even on join operations - which could be seen as an improvement - except we also do this dialects which don't support this.
Further improvements seem necessary, but for now since this wasn't planned properly and could cause problems I'm aiming to revert to the semantics it had before HHH-14271.