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

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Mon Mar 22 13:45:26 EDT 2010


Author: stliu
Date: 2010-03-22 13:45:25 -0400 (Mon, 22 Mar 2010)
New Revision: 19071

Modified:
   core/trunk/testsuite/src/test/java/org/hibernate/test/propertyref/inheritence/joined/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/joined/Person.hbm.xml
===================================================================
--- core/trunk/testsuite/src/test/java/org/hibernate/test/propertyref/inheritence/joined/Person.hbm.xml	2010-03-22 17:44:17 UTC (rev 19070)
+++ core/trunk/testsuite/src/test/java/org/hibernate/test/propertyref/inheritence/joined/Person.hbm.xml	2010-03-22 17:45:25 UTC (rev 19071)
@@ -35,7 +35,7 @@
 		<id name="accountId" length="32">
 			<generator class="uuid"/>
 		</id>
-		<property name="type" not-null="true"/>
+		<property name="type" column="`type`" not-null="true"/>
 		<joined-subclass name="BankAccount" table="J_SBCLS_PROPREF_BACCT">
 			<key column="accountId"/>
 			<properties unique="true" name="bsbAccountNumber">



More information about the hibernate-commits mailing list