[hibernate-commits] Hibernate SVN: r19048 - core/trunk/testsuite/src/test/java/org/hibernate/test/component/cascading/collection.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Mon Mar 22 09:28:59 EDT 2010


Author: stliu
Date: 2010-03-22 09:28:59 -0400 (Mon, 22 Mar 2010)
New Revision: 19048

Modified:
   core/trunk/testsuite/src/test/java/org/hibernate/test/component/cascading/collection/Mappings.hbm.xml
Log:
HHH-4732 quote column name as it is a keyword on teradata

Modified: core/trunk/testsuite/src/test/java/org/hibernate/test/component/cascading/collection/Mappings.hbm.xml
===================================================================
--- core/trunk/testsuite/src/test/java/org/hibernate/test/component/cascading/collection/Mappings.hbm.xml	2010-03-22 13:27:11 UTC (rev 19047)
+++ core/trunk/testsuite/src/test/java/org/hibernate/test/component/cascading/collection/Mappings.hbm.xml	2010-03-22 13:28:59 UTC (rev 19048)
@@ -15,7 +15,7 @@
 		</set>
 	</class>
 
-    <class name="Value" >
+    <class name="Value" table="`Value`">
 		<id name="id" type="long" column="ID">
 			<generator class="increment"/>
 		</id>



More information about the hibernate-commits mailing list