From: <one...@us...> - 2003-02-15 01:14:40
|
Update of /cvsroot/hibernate/Hibernate/cirrus/hibernate/test In directory sc8-pr-cvs1:/tmp/cvs-serv5415/hibernate/test Modified Files: FooBarTest.java Log Message: fix problem wrapping sorted collections don't update if mutable='false' Index: FooBarTest.java =================================================================== RCS file: /cvsroot/hibernate/Hibernate/cirrus/hibernate/test/FooBarTest.java,v retrieving revision 1.239 retrieving revision 1.240 diff -C2 -d -r1.239 -r1.240 *** FooBarTest.java 22 Jan 2003 13:32:19 -0000 1.239 --- FooBarTest.java 15 Feb 2003 01:14:37 -0000 1.240 *************** *** 765,768 **** --- 765,770 ---- assertTrue( list.size()==2, "component query" ); s.find("from foo in class Foo where not exists (from bar in class Bar where bar.id = foo.id)"); + + s.iterate("select foo.string, foo.date, foo.foo.string from foo in class Foo, baz in class Baz where foo in baz.fooArray.elements and foo.string like 'foo'"); } list = s.find("from foo in class cirrus.hibernate.test.Foo where foo.component.count is null order by foo.component.count"); |