[hibernate-commits] Hibernate SVN: r18373 - core/branches/Branch_3_2_4_SP1_CP/test/org/hibernate/test/criteria.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Thu Dec 31 01:14:45 EST 2009


Author: stliu
Date: 2009-12-31 01:14:45 -0500 (Thu, 31 Dec 2009)
New Revision: 18373

Modified:
   core/branches/Branch_3_2_4_SP1_CP/test/org/hibernate/test/criteria/LongInElementsTest.java
Log:
JBPAPP-3089 HHH-2166 - Long 'in' lists in queries results in a Java stack overflow exception.

Modified: core/branches/Branch_3_2_4_SP1_CP/test/org/hibernate/test/criteria/LongInElementsTest.java
===================================================================
--- core/branches/Branch_3_2_4_SP1_CP/test/org/hibernate/test/criteria/LongInElementsTest.java	2009-12-31 05:49:33 UTC (rev 18372)
+++ core/branches/Branch_3_2_4_SP1_CP/test/org/hibernate/test/criteria/LongInElementsTest.java	2009-12-31 06:14:45 UTC (rev 18373)
@@ -62,6 +62,7 @@
 		if ( (getDialect() instanceof SQLServerDialect)
 				|| (getDialect() instanceof Oracle8iDialect) ){
 			skipExpectedFailure( new Exception("this test fails on oracle and ms sql server, for more info, see HHH-1123") );
+			return;
 		}
 		Session session = openSession();
 		Transaction t = session.beginTransaction();
@@ -91,6 +92,7 @@
 		if ( (getDialect() instanceof SQLServerDialect)
 				|| (getDialect() instanceof Oracle8iDialect) ){
 			skipExpectedFailure( new Exception("this test fails on oracle and ms sql server, for more info, see HHH-1123") );
+			return;
 		}
 		Session session = openSession();
 		Transaction t = session.beginTransaction();



More information about the hibernate-commits mailing list