From: Wolfgang M. M. <wol...@us...> - 2004-05-03 13:08:55
|
Update of /cvsroot/exist/eXist-1.0/src/org/dbxml/core/filer In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19067/src/org/dbxml/core/filer Modified Files: BTree.java Log Message: Implemented lazy evaluation for XQuery enclosed expressions. Index: BTree.java =================================================================== RCS file: /cvsroot/exist/eXist-1.0/src/org/dbxml/core/filer/BTree.java,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 *** BTree.java 14 Apr 2004 12:17:23 -0000 1.23 --- BTree.java 3 May 2004 13:08:46 -0000 1.24 *************** *** 65,70 **** import org.exist.storage.cache.Cacheable; import org.exist.storage.cache.LRDCache; import org.exist.util.ByteConversion; - import org.exist.util.VariableByteInputStream; /** --- 65,70 ---- import org.exist.storage.cache.Cacheable; import org.exist.storage.cache.LRDCache; + import org.exist.storage.io.VariableByteArrayInput; import org.exist.util.ByteConversion; /** *************** *** 462,466 **** public void __read() throws IOException { byte[] data = page.read(); ! VariableByteInputStream is = new VariableByteInputStream(data); // Read in the Values --- 462,466 ---- public void __read() throws IOException { byte[] data = page.read(); ! VariableByteArrayInput is = new VariableByteArrayInput(data); // Read in the Values |