Package org.lealone.dbobject.index

Examples of org.lealone.dbobject.index.ScanIndex


import org.lealone.message.DbException;

public class MemoryTable extends TableBase {
    public MemoryTable(CreateTableData data) {
        super(data);
        scanIndex = new ScanIndex(this, data.id, IndexColumn.wrap(getColumns()), IndexType.createScan(false));
        indexes.add(scanIndex);
    }
View Full Code Here

TOP

Related Classes of org.lealone.dbobject.index.ScanIndex

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.