[hibernate-commits] Hibernate SVN: r10293 - trunk/Hibernate3/test/org/hibernate/test/jpa/ql

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Fri Aug 18 18:00:33 EDT 2006


Author: steve.ebersole at jboss.com
Date: 2006-08-18 18:00:17 -0400 (Fri, 18 Aug 2006)
New Revision: 10293

Modified:
   trunk/Hibernate3/test/org/hibernate/test/jpa/ql/JPAQLComplianceTest.java
Log:
HHH-1944 : generated subqueries and jpaql compliance (derived select clause) check

Modified: trunk/Hibernate3/test/org/hibernate/test/jpa/ql/JPAQLComplianceTest.java
===================================================================
--- trunk/Hibernate3/test/org/hibernate/test/jpa/ql/JPAQLComplianceTest.java	2006-08-18 21:53:53 UTC (rev 10292)
+++ trunk/Hibernate3/test/org/hibernate/test/jpa/ql/JPAQLComplianceTest.java	2006-08-18 22:00:17 UTC (rev 10293)
@@ -47,7 +47,7 @@
 		s.close();
 	}
 
-	public void testSelectWithDistinctClause() {
+	public void testGeneratedSubquery() {
 		Session s = openSession();
 		s.createQuery( "select c FROM Item c WHERE c.parts IS EMPTY" ).list();
 		s.close();




More information about the hibernate-commits mailing list