|
From: <pm_...@us...> - 2011-10-03 09:41:24
|
Revision: 4462
http://mxquery.svn.sourceforge.net/mxquery/?rev=4462&view=rev
Author: pm_fischer
Date: 2011-10-03 09:41:17 +0000 (Mon, 03 Oct 2011)
Log Message:
-----------
fix a bug with an overly strict attribute name check for updates
Modified Paths:
--------------
trunk/MXQuery/src/ch/ethz/mxquery/model/updatePrimitives/PendingUpdateList.java
Modified: trunk/MXQuery/src/ch/ethz/mxquery/model/updatePrimitives/PendingUpdateList.java
===================================================================
--- trunk/MXQuery/src/ch/ethz/mxquery/model/updatePrimitives/PendingUpdateList.java 2011-09-29 23:40:22 UTC (rev 4461)
+++ trunk/MXQuery/src/ch/ethz/mxquery/model/updatePrimitives/PendingUpdateList.java 2011-10-03 09:41:17 UTC (rev 4462)
@@ -388,6 +388,10 @@
else
seenAttrNames.add(attName);
}
+ else {
+ if (seenAttrNames.size() > 0)
+ seenAttrNames = new Set();
+ }
// Namespace binding conflicts test
Hashtable nms = tok.getDynamicScope().getLocalNamespaces();
Enumeration enumNms = nms.elements();
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|