Examples of DocTableInfoBuilder


Examples of io.crate.metadata.doc.DocTableInfoBuilder

        if (PartitionName.isPartition(index.name())) {
            String tableName = PartitionName.tableName(index.name());
            // check if alias exists
            if (clusterService.state().metaData().hasConcreteIndex(tableName)) {
                // get DocTableInfo for virtual partitioned table
                DocTableInfo info = new DocTableInfoBuilder(
                        docSchemaInfo,
                        new TableIdent(DocSchemaInfo.NAME, tableName),
                        clusterService, transportPutIndexTemplateAction, true).build();
                assert info.isPartitioned();
                int i = 0;
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.