Package org.lealone.hbase.dbobject.index

Examples of org.lealone.hbase.dbobject.index.HBaseDelegateIndex


                }
            }
        }
        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) {
View Full Code Here

TOP

Related Classes of org.lealone.hbase.dbobject.index.HBaseDelegateIndex

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.