Examples of jumpToNextFile()


Examples of org.chaidb.db.index.btree.bufmgr.PageNumber.jumpToNextFile()

        //add by Stanley
        // if current directory does not have the file we will jump to next file
        //whose file number is one more than previous one
        if (!bufferManager.checkTreeExistinCurrentDir(btree.getBtreeId(), oldPageNumber.getFileNumber())) {
            oldPageNumber.jumpToNextFile();
            bufferManager.addVirtualFile(btree.getBtreeId(), oldPageNumber.getFileNumber());
        }

        p = new PageNumber(oldPageNumber);
        p.add(1);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.