HHH-5593 org.hibernate.test.legacy.FooBarTest.testCollectionWhere fails on hsqldb
git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@20699 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
parent
5ee8c0fc75
commit
834551b33e
|
@ -104,7 +104,7 @@
|
|||
<element column="map_value" type="date"/>
|
||||
</map>
|
||||
|
||||
<array name="fooArray" element-class="org.hibernate.test.legacy.FooProxy" where="i<8" check="i>=0">
|
||||
<array name="fooArray" table="FOO_ARRAY" element-class="org.hibernate.test.legacy.FooProxy" where="i<8" check="i>=0">
|
||||
<!--cache-->
|
||||
<key column="id_"/>
|
||||
<index column="i"/>
|
||||
|
|
|
@ -2038,7 +2038,7 @@ public class FooBarTest extends LegacyTestCase {
|
|||
String bazid = baz.getCode();
|
||||
s.delete(baz);
|
||||
int rows=s.connection().createStatement().executeUpdate(
|
||||
"delete from fooArray where id_='" + bazid + "' and i>=8"
|
||||
"delete from FOO_ARRAY where id_='" + bazid + "' and i>=8"
|
||||
);
|
||||
assertTrue(rows==1);
|
||||
s.getTransaction().commit();
|
||||
|
|
Loading…
Reference in New Issue