Package com.foundationdb.ais.model

Examples of com.foundationdb.ais.model.Index.dimensions()


        Index index = keyRange.indexRowType().index();
        int firstSpatialColumn;
        int dimensions;
        if (index.isSpatial()) {
            firstSpatialColumn = index.firstSpatialArgument();
            dimensions = index.dimensions();
        } else {
            firstSpatialColumn = Integer.MAX_VALUE;
            dimensions = 0;
        }
        List<IndexColumn> indexColumns = index().getAllColumns();
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.