[hibernate-commits] Hibernate SVN: r11188 - branches/Branch_3_2/HibernateExt/annotations/src/java/org/hibernate/cfg/annotations.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Sat Feb 10 02:38:41 EST 2007


Author: epbernard
Date: 2007-02-10 02:38:41 -0500 (Sat, 10 Feb 2007)
New Revision: 11188

Modified:
   branches/Branch_3_2/HibernateExt/annotations/src/java/org/hibernate/cfg/annotations/CollectionBinder.java
Log:
ANN-544  call DeleteAll rather than Delete

Modified: branches/Branch_3_2/HibernateExt/annotations/src/java/org/hibernate/cfg/annotations/CollectionBinder.java
===================================================================
--- branches/Branch_3_2/HibernateExt/annotations/src/java/org/hibernate/cfg/annotations/CollectionBinder.java	2007-02-10 07:32:57 UTC (rev 11187)
+++ branches/Branch_3_2/HibernateExt/annotations/src/java/org/hibernate/cfg/annotations/CollectionBinder.java	2007-02-10 07:38:41 UTC (rev 11188)
@@ -365,7 +365,7 @@
 			);
 		}
 		if ( sqlDeleteAll != null ) {
-			collection.setCustomSQLDelete( sqlDeleteAll.sql(), sqlDeleteAll.callable(),
+			collection.setCustomSQLDeleteAll( sqlDeleteAll.sql(), sqlDeleteAll.callable(),
 					ExecuteUpdateResultCheckStyle.parse( sqlDeleteAll.check().toString().toLowerCase() )
 			);
 		}




More information about the hibernate-commits mailing list