[hibernate-commits] Hibernate SVN: r10986 - branches/Branch_3_2/Hibernate3/test/org/hibernate/test/lob

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Wed Dec 13 13:35:34 EST 2006


Author: steve.ebersole at jboss.com
Date: 2006-12-13 13:35:33 -0500 (Wed, 13 Dec 2006)
New Revision: 10986

Modified:
   branches/Branch_3_2/Hibernate3/test/org/hibernate/test/lob/LobMappings.hbm.xml
Log:
added length attributes for running on Derby

Modified: branches/Branch_3_2/Hibernate3/test/org/hibernate/test/lob/LobMappings.hbm.xml
===================================================================
--- branches/Branch_3_2/Hibernate3/test/org/hibernate/test/lob/LobMappings.hbm.xml	2006-12-13 15:19:12 UTC (rev 10985)
+++ branches/Branch_3_2/Hibernate3/test/org/hibernate/test/lob/LobMappings.hbm.xml	2006-12-13 18:35:33 UTC (rev 10986)
@@ -13,10 +13,10 @@
 		<property name="serialData" column="SER_DATA" type="serializable"/>
 
 		<property name="materializedClob" column="MAT_CLOB_DATA" type="text" length="15000"/>
-        <property name="clobLocator" column="CLOB_DATA" type="clob" />
+        <property name="clobLocator" column="CLOB_DATA" type="clob" length="15000" />
 
 		<property name="materializedBlob" column="MAT_BLOB_DATA" type="org.hibernate.test.lob.MaterializedBlobType" length="15000"/>
-        <property name="blobLocator" column="BLOB_DATA" type="blob" />
+        <property name="blobLocator" column="BLOB_DATA" type="blob" length="15000" />
     </class>
 
 </hibernate-mapping>
\ No newline at end of file




More information about the hibernate-commits mailing list