From: <hib...@li...> - 2006-03-10 03:18:53
|
Author: ste...@jb... Date: 2006-03-09 22:18:49 -0500 (Thu, 09 Mar 2006) New Revision: 9591 Modified: trunk/Hibernate3/test/org/hibernate/test/instrument/domain/Documents.hbm.xml Log: mapping bug Modified: trunk/Hibernate3/test/org/hibernate/test/instrument/domain/Documents.hbm.xml =================================================================== --- trunk/Hibernate3/test/org/hibernate/test/instrument/domain/Documents.hbm.xml 2006-03-10 00:35:01 UTC (rev 9590) +++ trunk/Hibernate3/test/org/hibernate/test/instrument/domain/Documents.hbm.xml 2006-03-10 03:18:49 UTC (rev 9591) @@ -57,7 +57,7 @@ <property name="name" not-null="true" length="50"/> <property name="upperCaseName" formula="upper(name)" lazy="true"/> <property name="summary" not-null="true" length="200" lazy="true"/> - <many-to-one name="folder" not-null="true" lazy="true"/> + <many-to-one name="folder" not-null="true" lazy="no-proxy"/> <many-to-one name="owner" not-null="true" lazy="no-proxy" fetch="select"/> <property name="text" not-null="true" length="2000" lazy="true"/> <property name="lastTextModification" not-null="true" lazy="true" access="field"/> |