Package com.foundationdb.qp.row

Examples of com.foundationdb.qp.row.IndexRow


    }

    @Override
    public Row next()
    {
        IndexRow next;
        CursorLifecycle.checkIdleOrActive(this);
        boolean needAnother;
        do {
            if ((next = (IndexRow) indexCursor.next()) != null) {
                needAnother = !(isTableIndex ||
                                selector.matchesAll() ||
                                !next.keyEmpty() && selector.matches(next.tableBitmap()));
            } else {
                setIdle();
                needAnother = false;
            }
        } while (needAnother);
View Full Code Here

TOP

Related Classes of com.foundationdb.qp.row.IndexRow

Copyright © 2018 www.massapicom. 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.