|
From: <et...@us...> - 2011-09-28 10:05:13
|
Revision: 4458
http://mxquery.svn.sourceforge.net/mxquery/?rev=4458&view=rev
Author: etterth
Date: 2011-09-28 10:05:07 +0000 (Wed, 28 Sep 2011)
Log Message:
-----------
- "insert into" is now equal to "insert as last into" -> less errors in xquts
Modified Paths:
--------------
trunk/MXQuery/xqib_src/ch/ethz/mxquery/update/store/domImpl/NodeStore.java
Modified: trunk/MXQuery/xqib_src/ch/ethz/mxquery/update/store/domImpl/NodeStore.java
===================================================================
--- trunk/MXQuery/xqib_src/ch/ethz/mxquery/update/store/domImpl/NodeStore.java 2011-09-28 09:54:49 UTC (rev 4457)
+++ trunk/MXQuery/xqib_src/ch/ethz/mxquery/update/store/domImpl/NodeStore.java 2011-09-28 10:05:07 UTC (rev 4458)
@@ -254,7 +254,7 @@
@Override
public void insertInto(Identifier targetId, MaterializingStore store)
throws MXQueryException {
- insertIntoAsFirst(targetId, store);
+ insertIntoAsLast(targetId, store);
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|