[hibernate-commits] Hibernate SVN: r18338 - core/branches/Branch_3_3/testsuite/src/test/java/org/hibernate/test/filter.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Tue Dec 29 03:04:16 EST 2009


Author: stliu
Date: 2009-12-29 03:04:16 -0500 (Tue, 29 Dec 2009)
New Revision: 18338

Modified:
   core/branches/Branch_3_3/testsuite/src/test/java/org/hibernate/test/filter/Category.hbm.xml
Log:
HHH-4741 org.hibernate.test.filter.DynamicFilterTest.testSqlSyntaxOfFiltersWithUnions fails on MySQL

Modified: core/branches/Branch_3_3/testsuite/src/test/java/org/hibernate/test/filter/Category.hbm.xml
===================================================================
--- core/branches/Branch_3_3/testsuite/src/test/java/org/hibernate/test/filter/Category.hbm.xml	2009-12-29 07:50:55 UTC (rev 18337)
+++ core/branches/Branch_3_3/testsuite/src/test/java/org/hibernate/test/filter/Category.hbm.xml	2009-12-29 08:04:16 UTC (rev 18338)
@@ -21,7 +21,7 @@
 
         <filter name="effectiveDate" condition=":asOfDate BETWEEN eff_start_dt and eff_end_dt"/>
         <filter name="unioned">
-            'abc' in ( select d.reg from department d where (d.dept_id=123) union select p.name from sales_person p )
+            'abc' in ( select d.reg from DEPARTMENT d where (d.dept_id=123) union select p.name from SALES_PERSON p )
         </filter>
 
     </class>



More information about the hibernate-commits mailing list