HHH-8318 updated test case

This commit is contained in:
Brett Meyer 2013-06-20 12:00:24 -04:00
parent 1b076074b0
commit 8a63228c3b
1 changed files with 1 additions and 1 deletions

View File

@ -464,7 +464,7 @@ public class QueryAndSQLTest extends BaseCoreFunctionalTestCase {
"delete Attrvalue aval where aval.id in ( " "delete Attrvalue aval where aval.id in ( "
+ "select val2.id from Employee e, Employeegroup eg, Attrset aset, Attrvalue val2 " + "select val2.id from Employee e, Employeegroup eg, Attrset aset, Attrvalue val2 "
+ "where eg.id = e.employeegroup.id " + "and aset.id = e.attrset.id " + "where eg.id = e.employeegroup.id " + "and aset.id = e.attrset.id "
+ "and val2.id member of aset.attrvalues)" ).executeUpdate(); + "and val2 member of aset.attrvalues)" ).executeUpdate();
s.getTransaction().commit(); s.getTransaction().commit();
s.close(); s.close();
} }