[hibernate-commits] Hibernate SVN: r19063 - core/trunk/testsuite/src/test/java/org/hibernate/test/join.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Mon Mar 22 13:09:18 EDT 2010


Author: stliu
Date: 2010-03-22 13:09:18 -0400 (Mon, 22 Mar 2010)
New Revision: 19063

Modified:
   core/trunk/testsuite/src/test/java/org/hibernate/test/join/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/join/Person.hbm.xml
===================================================================
--- core/trunk/testsuite/src/test/java/org/hibernate/test/join/Person.hbm.xml	2010-03-22 17:05:57 UTC (rev 19062)
+++ core/trunk/testsuite/src/test/java/org/hibernate/test/join/Person.hbm.xml	2010-03-22 17:09:18 UTC (rev 19063)
@@ -53,7 +53,7 @@
         <subclass name="Employee" lazy="true" discriminator-value="E">
             <join table="employee" fetch="select">
                 <key column="person_id"/>
-                <property name="title" not-null="true" length="20"/>
+                <property name="title" column="`title`" not-null="true" length="20"/>
                 <property name="salary" length="0"/>
                 <many-to-one name="manager"/>
             </join>



More information about the hibernate-commits mailing list