[hibernate-commits] Hibernate SVN: r19070 - core/trunk/testsuite/src/test/java/org/hibernate/test/propertyref/inheritence/discrim.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Mon Mar 22 13:44:17 EDT 2010


Author: stliu
Date: 2010-03-22 13:44:17 -0400 (Mon, 22 Mar 2010)
New Revision: 19070

Modified:
   core/trunk/testsuite/src/test/java/org/hibernate/test/propertyref/inheritence/discrim/Person.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/propertyref/inheritence/discrim/Person.hbm.xml
===================================================================
--- core/trunk/testsuite/src/test/java/org/hibernate/test/propertyref/inheritence/discrim/Person.hbm.xml	2010-03-22 17:42:34 UTC (rev 19069)
+++ core/trunk/testsuite/src/test/java/org/hibernate/test/propertyref/inheritence/discrim/Person.hbm.xml	2010-03-22 17:44:17 UTC (rev 19070)
@@ -24,7 +24,7 @@
 		</id>
 		<many-to-one name="person" column="personId" unique="true" property-ref="personId"/>
 		<many-to-one name="customer" column="customerPersonId" unique="true" property-ref="personId"/>
-		<property name="type" not-null="true"/>
+		<property name="type" column="`type`" not-null="true"/>
 	</class>
 
 </hibernate-mapping>
\ No newline at end of file



More information about the hibernate-commits mailing list