Package org.chaidb.db.log

Examples of org.chaidb.db.log.Lsn.compare()


            txnBeginLsn = tempTxn.getBeginLsn();

            /* modified by marriane 2002-6-18 ignore transactions which just
                began and no log records during these txns,so its beginLsn is
                equals to (-1,-1). */
            if (txnBeginLsn.compare(new Lsn(LogManager.INVALID_LSN_FILE_ID, LogManager.INVALID_LSN_OFFSET)) == 0) {
                continue;
            }

            /*modified by marriane 2002-6-20,new Lsn, for not using the beginLsn
                reference,because it'll be set to (-1,-1) while txn end. Or it
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.