[hibernate-commits] Hibernate SVN: r16398 - core/branches/Branch_3_2/test/org/hibernate/test/schemaupdate.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Wed Apr 22 07:10:48 EDT 2009


Author: jcosta at redhat.com
Date: 2009-04-22 07:10:48 -0400 (Wed, 22 Apr 2009)
New Revision: 16398

Modified:
   core/branches/Branch_3_2/test/org/hibernate/test/schemaupdate/1_Version.hbm.xml
   core/branches/Branch_3_2/test/org/hibernate/test/schemaupdate/2_Version.hbm.xml
Log:
HHH-3621 - Making the 1_Version.hbm.xml and 2_Version.hbm.xml in schemaupdate consistent. The only difference should be the extra column in 2_Version, to test the update of the schema. For Branch_3_2

Modified: core/branches/Branch_3_2/test/org/hibernate/test/schemaupdate/1_Version.hbm.xml
===================================================================
--- core/branches/Branch_3_2/test/org/hibernate/test/schemaupdate/1_Version.hbm.xml	2009-04-22 11:09:22 UTC (rev 16397)
+++ core/branches/Branch_3_2/test/org/hibernate/test/schemaupdate/1_Version.hbm.xml	2009-04-22 11:10:48 UTC (rev 16398)
@@ -14,6 +14,6 @@
 		</id>
 		<property name="description"/>	
 	</class>
-	
+
 </hibernate-mapping>
 

Modified: core/branches/Branch_3_2/test/org/hibernate/test/schemaupdate/2_Version.hbm.xml
===================================================================
--- core/branches/Branch_3_2/test/org/hibernate/test/schemaupdate/2_Version.hbm.xml	2009-04-22 11:09:22 UTC (rev 16397)
+++ core/branches/Branch_3_2/test/org/hibernate/test/schemaupdate/2_Version.hbm.xml	2009-04-22 11:10:48 UTC (rev 16398)
@@ -5,11 +5,10 @@
 
 <hibernate-mapping package="org.hibernate.test.schemaupdate">
 
-	<class name="Version" schema="PUBLIC">
+	<class name="Version">
 		<id name="id">
 			<generator class="org.hibernate.id.TableHiLoGenerator">
                 <param name="table">uid_table</param>
-<!--                 <param name="schema">PUBLIC</param>                -->
                 <param name="column">next_hi_value_column</param>
         	</generator>
 		</id>




More information about the hibernate-commits mailing list