[hibernate-commits] Hibernate SVN: r10925 - branches/Branch_3_2/Hibernate3/test/org/hibernate/test/jpa/ql

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Tue Dec 5 13:47:50 EST 2006


Author: steve.ebersole at jboss.com
Date: 2006-12-05 13:47:50 -0500 (Tue, 05 Dec 2006)
New Revision: 10925

Modified:
   branches/Branch_3_2/Hibernate3/test/org/hibernate/test/jpa/ql/JPAQLComplianceTest.java
Log:
additional test query

Modified: branches/Branch_3_2/Hibernate3/test/org/hibernate/test/jpa/ql/JPAQLComplianceTest.java
===================================================================
--- branches/Branch_3_2/Hibernate3/test/org/hibernate/test/jpa/ql/JPAQLComplianceTest.java	2006-12-05 18:47:29 UTC (rev 10924)
+++ branches/Branch_3_2/Hibernate3/test/org/hibernate/test/jpa/ql/JPAQLComplianceTest.java	2006-12-05 18:47:50 UTC (rev 10925)
@@ -34,6 +34,7 @@
 		// caused problems with the "discriminator resolution" code; unable to reproduce)...
 		s.createQuery( "from MyEntity e where e.class = MySubclassEntity" );
 		s.createQuery( "from MyEntity e where e.other.class = MySubclassEntity" );
+		s.createQuery( "from MyEntity where other.class = MySubclassEntity" );
 
 		s.createQuery( "select object(I) from Item i").list();
 		s.close();




More information about the hibernate-commits mailing list