Author: steve.ebersole(a)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();
}
Show replies by date