[hibernate-commits] Hibernate SVN: r11379 - branches/Branch_3_2/Hibernate3/src/org/hibernate/hql/ast/tree.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Fri Mar 30 07:23:58 EDT 2007


Author: steve.ebersole at jboss.com
Date: 2007-03-30 07:23:58 -0400 (Fri, 30 Mar 2007)
New Revision: 11379

Modified:
   branches/Branch_3_2/Hibernate3/src/org/hibernate/hql/ast/tree/DotNode.java
Log:
HHH-2532 : BulkOperationCleanupAction#afterTransactionCompletion && JBC

Modified: branches/Branch_3_2/Hibernate3/src/org/hibernate/hql/ast/tree/DotNode.java
===================================================================
--- branches/Branch_3_2/Hibernate3/src/org/hibernate/hql/ast/tree/DotNode.java	2007-03-30 11:23:48 UTC (rev 11378)
+++ branches/Branch_3_2/Hibernate3/src/org/hibernate/hql/ast/tree/DotNode.java	2007-03-30 11:23:58 UTC (rev 11379)
@@ -217,7 +217,9 @@
 		}
 		else {
 			// Otherwise, this is a primitive type.
-			checkLhsIsNotCollection();
+			if ( ! CollectionProperties.isAnyCollectionProperty( propertyName ) ) {
+				checkLhsIsNotCollection();
+			}
 			dereferenceType = DEREF_PRIMITIVE;
 			initText();
 		}




More information about the hibernate-commits mailing list