Skip to content

Commit

Permalink
HHH-8082 HQLScrollFetchTest.testScroll hangs on DB2-97
Browse files Browse the repository at this point in the history
  • Loading branch information
Brett Meyer committed Mar 19, 2013
1 parent f8e6ac7 commit d9673b8
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -17,6 +17,7 @@
import org.hibernate.ScrollableResults;
import org.hibernate.Session;
import org.hibernate.Transaction;
import org.hibernate.dialect.DB2Dialect;
import org.hibernate.dialect.H2Dialect;
import org.hibernate.dialect.Oracle8iDialect;
import org.hibernate.dialect.SQLServerDialect;
Expand All @@ -41,7 +42,7 @@ public void testNoScroll() {
}

@Test
@SkipForDialect( { SQLServerDialect.class, Oracle8iDialect.class, H2Dialect.class } )
@SkipForDialect( { SQLServerDialect.class, Oracle8iDialect.class, H2Dialect.class, DB2Dialect.class } )
public void testScroll() {
Session s = openSession();
ScrollableResults results = s.createQuery( QUERY ).scroll();
Expand Down

0 comments on commit d9673b8

Please sign in to comment.