HHH-3675 - Limitations on Sybase ResultSet implementation causes unit test failures

git-svn-id: https://svn.jboss.org/repos/hibernate/core/branches/Branch_3_2@15724 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
Gail Badner 2008-12-22 23:28:32 +00:00
parent fdc420edeb
commit 8a6842cc11
2 changed files with 9 additions and 4 deletions

View File

@ -107,6 +107,10 @@ public class AggressiveReleaseTest extends ConnectionManagementTestCase {
// expected behavior
}
// getting the first row only because Sybase throws NullPointerException
// if data is not read before closing the ResultSet
sr.next();
// Closing the ScrollableResults does currently force the batcher to
// aggressively release the connection
sr.close();

View File

@ -443,17 +443,18 @@ public class CMTTest extends FunctionalTestCase {
DummyTransactionManager.INSTANCE.begin();
s = getSessions().getCurrentSession();
results = s.createQuery( "from Item" ).scroll();
while ( !results.isLast() ) {
results.next();
while ( results.next() ) {
// do nothing
}
DummyTransactionManager.INSTANCE.getTransaction().commit();
// Next, scroll the entire result (closing)
DummyTransactionManager.INSTANCE.begin();
s = getSessions().getCurrentSession();
results = s.createQuery( "from Item" ).scroll();
while ( !results.isLast() ) {
results.next();
while ( results.next() ) {
// do nothing
}
results.close();
DummyTransactionManager.INSTANCE.getTransaction().commit();