From: Wolfgang M. M. <wol...@us...> - 2004-06-30 15:57:25
|
Update of /cvsroot/exist/eXist-1.0/src/org/exist/storage In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21812/src/org/exist/storage Modified Files: NativeElementIndex.java Log Message: Fixed xquery caching bug in "order by" clause, which leads to a NullPointerException in DOMFile.getNodeValue. Index: NativeElementIndex.java =================================================================== RCS file: /cvsroot/exist/eXist-1.0/src/org/exist/storage/NativeElementIndex.java,v retrieving revision 1.32 retrieving revision 1.33 diff -C2 -d -r1.32 -r1.33 *** NativeElementIndex.java 27 Jun 2004 21:10:07 -0000 1.32 --- NativeElementIndex.java 30 Jun 2004 15:56:59 -0000 1.33 *************** *** 557,564 **** last = gid; address = StorageAddress.read(is); ! if (!containsNode(idList, gid)) { newList.add(new NodeProxy(doc, gid, address)); - } } } --- 557,563 ---- last = gid; address = StorageAddress.read(is); ! if (!containsNode(idList, gid)) newList.add(new NodeProxy(doc, gid, address)); } } |