[hibernate-commits] Hibernate SVN: r17986 - core/branches/Branch_3_2_4_SP1_CP/test/org/hibernate/test/hql.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Mon Nov 16 08:50:06 EST 2009


Author: stliu
Date: 2009-11-16 08:50:05 -0500 (Mon, 16 Nov 2009)
New Revision: 17986

Modified:
   core/branches/Branch_3_2_4_SP1_CP/test/org/hibernate/test/hql/BulkManipulationTest.java
   core/branches/Branch_3_2_4_SP1_CP/test/org/hibernate/test/hql/Vehicle.hbm.xml
Log:
JBPAPP-3067 HHH-4576 - Tests in MySQL using different case for objects as defined in configuration

Modified: core/branches/Branch_3_2_4_SP1_CP/test/org/hibernate/test/hql/BulkManipulationTest.java
===================================================================
--- core/branches/Branch_3_2_4_SP1_CP/test/org/hibernate/test/hql/BulkManipulationTest.java	2009-11-16 13:01:09 UTC (rev 17985)
+++ core/branches/Branch_3_2_4_SP1_CP/test/org/hibernate/test/hql/BulkManipulationTest.java	2009-11-16 13:50:05 UTC (rev 17986)
@@ -186,7 +186,7 @@
 		List l = s.createQuery("from Vehicle").list();
 		assertEquals(l.size(),4);
 
-		s.createSQLQuery( "insert into PICKUP (id, vin, owner) select id, vin, owner from Car" ).executeUpdate();
+		s.createSQLQuery( "insert into Pickup (id, vin, owner) select id, vin, owner from Car" ).executeUpdate();
 
 		l = s.createQuery("from Vehicle").list();
 		assertEquals(l.size(),5);
@@ -194,7 +194,7 @@
 		t.commit();
 		t = s.beginTransaction();
 
-		s.createSQLQuery( "delete from TRUCK" ).executeUpdate();
+		s.createSQLQuery( "delete from Truck" ).executeUpdate();
 
 		l = s.createQuery("from Vehicle").list();
 		assertEquals(l.size(),4);
@@ -207,7 +207,7 @@
 		
 		assertEquals(0,s.createSQLQuery( "delete from SUV where owner = :owner" ).setString( "owner", "NotThere" ).executeUpdate());
 		assertEquals(1,s.createSQLQuery( "delete from SUV where owner = :owner" ).setString( "owner", "Joe" ).executeUpdate());
-		s.createSQLQuery( "delete from PICKUP" ).executeUpdate();
+		s.createSQLQuery( "delete from Pickup" ).executeUpdate();
 
 		l = s.createQuery("from Vehicle").list();
 		assertEquals(l.size(),0);

Modified: core/branches/Branch_3_2_4_SP1_CP/test/org/hibernate/test/hql/Vehicle.hbm.xml
===================================================================
--- core/branches/Branch_3_2_4_SP1_CP/test/org/hibernate/test/hql/Vehicle.hbm.xml	2009-11-16 13:01:09 UTC (rev 17985)
+++ core/branches/Branch_3_2_4_SP1_CP/test/org/hibernate/test/hql/Vehicle.hbm.xml	2009-11-16 13:50:05 UTC (rev 17986)
@@ -26,6 +26,6 @@
 
 	<sql-query name="native-delete-car">
 	    <synchronize table="Car"/>
-		delete from CAR where owner = ?
+		delete from Car where owner = ?
 	</sql-query>
 </hibernate-mapping>
\ No newline at end of file



More information about the hibernate-commits mailing list