HHH-9234 : Test failure (testNaturalIdChangedWhileAttached) on SAP/SYBASE ASE
(cherry picked from commit 257efd1025
)
This commit is contained in:
parent
10e4ff5afb
commit
ea5068ea76
|
@ -186,7 +186,7 @@ public class CachedMutableNaturalIdStrictReadWriteTest extends
|
|||
final String naturalIdCacheRegion = "hibernate.test.org.hibernate.test.naturalid.mutable.cached.Another##NaturalId";
|
||||
sessionFactory().getStatistics().clear();
|
||||
|
||||
final Session session = openSession();
|
||||
Session session = openSession();
|
||||
session.beginTransaction();
|
||||
final Another it = new Another( "IT");
|
||||
session.save( it );
|
||||
|
@ -201,5 +201,11 @@ public class CachedMutableNaturalIdStrictReadWriteTest extends
|
|||
// Refresh statistics reference.
|
||||
statistics = sessionFactory().getStatistics().getNaturalIdCacheStatistics( naturalIdCacheRegion );
|
||||
assertEquals( 0, statistics.getPutCount() );
|
||||
|
||||
session = openSession();
|
||||
session.beginTransaction();
|
||||
session.delete( it );
|
||||
session.getTransaction().commit();
|
||||
session.clear();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue