HHH-18024 fix getLockMode() on read-only entity
it resulted in spurious exception claiming entity was deleted Signed-off-by: Gavin King <gavin@hibernate.org>
This commit is contained in:
parent
789cc12b8e
commit
1657702015
|
@ -560,7 +560,7 @@ public class SessionImpl
|
||||||
throw new TransientObjectException( "Given object not associated with the session" );
|
throw new TransientObjectException( "Given object not associated with the session" );
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( e.getStatus() != Status.MANAGED ) {
|
if ( e.getStatus().isDeletedOrGone() ) {
|
||||||
throw new ObjectDeletedException(
|
throw new ObjectDeletedException(
|
||||||
"The given object was deleted",
|
"The given object was deleted",
|
||||||
e.getId(),
|
e.getId(),
|
||||||
|
|
|
@ -19,7 +19,6 @@ import org.hibernate.engine.spi.EntityEntry;
|
||||||
import org.hibernate.engine.spi.LoadQueryInfluencers;
|
import org.hibernate.engine.spi.LoadQueryInfluencers;
|
||||||
import org.hibernate.engine.spi.SessionFactoryImplementor;
|
import org.hibernate.engine.spi.SessionFactoryImplementor;
|
||||||
import org.hibernate.engine.spi.SharedSessionContractImplementor;
|
import org.hibernate.engine.spi.SharedSessionContractImplementor;
|
||||||
import org.hibernate.engine.spi.Status;
|
|
||||||
import org.hibernate.engine.spi.SubselectFetch;
|
import org.hibernate.engine.spi.SubselectFetch;
|
||||||
import org.hibernate.event.spi.EventSource;
|
import org.hibernate.event.spi.EventSource;
|
||||||
import org.hibernate.loader.LoaderLogging;
|
import org.hibernate.loader.LoaderLogging;
|
||||||
|
@ -55,7 +54,7 @@ public class LoaderHelper {
|
||||||
// The user requested a "greater" (i.e. more restrictive) form of
|
// The user requested a "greater" (i.e. more restrictive) form of
|
||||||
// pessimistic lock
|
// pessimistic lock
|
||||||
|
|
||||||
if ( entry.getStatus() != Status.MANAGED ) {
|
if ( entry.getStatus().isDeletedOrGone()) {
|
||||||
throw new ObjectDeletedException(
|
throw new ObjectDeletedException(
|
||||||
"attempted to lock a deleted instance",
|
"attempted to lock a deleted instance",
|
||||||
entry.getId(),
|
entry.getId(),
|
||||||
|
|
Loading…
Reference in New Issue