Author: stliu
Date: 2009-12-29 03:06:43 -0500 (Tue, 29 Dec 2009)
New Revision: 18340
Modified:
core/branches/Branch_3_3_2_GA_CP/testsuite/src/test/java/org/hibernate/test/filter/Category.hbm.xml
Log:
JBPAPP-3310 HHH-4741
org.hibernate.test.filter.DynamicFilterTest.testSqlSyntaxOfFiltersWithUnions fails on
MySQL
Modified:
core/branches/Branch_3_3_2_GA_CP/testsuite/src/test/java/org/hibernate/test/filter/Category.hbm.xml
===================================================================
---
core/branches/Branch_3_3_2_GA_CP/testsuite/src/test/java/org/hibernate/test/filter/Category.hbm.xml 2009-12-29
08:05:58 UTC (rev 18339)
+++
core/branches/Branch_3_3_2_GA_CP/testsuite/src/test/java/org/hibernate/test/filter/Category.hbm.xml 2009-12-29
08:06:43 UTC (rev 18340)
@@ -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>