Package org.lealone.hbase.dbobject.index

Examples of org.lealone.hbase.dbobject.index.HBaseSecondaryIndex$BufferPool


        }
        Index index;
        if (isDelegateIndex)
            index = new HBaseDelegateIndex(this, indexId, indexName, cols, scanIndex, indexType);
        else
            index = new HBaseSecondaryIndex(this, indexId, indexName, cols, indexType);

        index.setTemporary(isTemporary());
        if (index.getCreateSQL() != null) {
            index.setComment(indexComment);
            if (isSessionTemporary) {
View Full Code Here

TOP

Related Classes of org.lealone.hbase.dbobject.index.HBaseSecondaryIndex$BufferPool

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.