Update of /cvsroot/hibernate/Hibernate2/src/net/sf/hibernate/test
In directory sc8-pr-cvs1:/tmp/cvs-serv28255/sf/hibernate/test
Modified Files:
Baz.hbm.xml
Log Message:
fixed a problem outerjoin loading many-to-manys with a repeated column name
Index: Baz.hbm.xml
===================================================================
RCS file: /cvsroot/hibernate/Hibernate2/src/net/sf/hibernate/test/Baz.hbm.xml,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** Baz.hbm.xml 22 Jan 2003 13:09:20 -0000 1.6
--- Baz.hbm.xml 1 Feb 2003 00:17:17 -0000 1.7
***************
*** 76,80 ****
<key-property name="count" column="count_"/>
</composite-index>
! <many-to-many column="foo_id" class="net.sf.hibernate.test.Foo"/>
</map>
<map name="glarchToFoo">
--- 76,80 ----
<key-property name="count" column="count_"/>
</composite-index>
! <many-to-many column="foo_id" class="net.sf.hibernate.test.Foo" outer-join="true"/>
</map>
<map name="glarchToFoo">
|