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

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Mon Mar 22 13:47:23 EDT 2010


Author: stliu
Date: 2010-03-22 13:47:23 -0400 (Mon, 22 Mar 2010)
New Revision: 19072

Modified:
   core/trunk/testsuite/src/test/java/org/hibernate/test/propertyref/inheritence/union/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/union/Person.hbm.xml
===================================================================
--- core/trunk/testsuite/src/test/java/org/hibernate/test/propertyref/inheritence/union/Person.hbm.xml	2010-03-22 17:45:25 UTC (rev 19071)
+++ core/trunk/testsuite/src/test/java/org/hibernate/test/propertyref/inheritence/union/Person.hbm.xml	2010-03-22 17:47:23 UTC (rev 19072)
@@ -23,7 +23,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