Examples of enableReplicatedSecondaryIndexes()


Examples of edu.brown.benchmark.AbstractProjectBuilder.enableReplicatedSecondaryIndexes()

    public static AbstractProjectBuilder getProjectBuilder(ProjectType type) {
        AbstractProjectBuilder projectBuilder = AbstractProjectBuilder.getProjectBuilder(type);
        // 2012-10-11: We have to disable any replicated secondary indexes
        // because it will screw up a bunch of tests that we already have setup
        projectBuilder.enableReplicatedSecondaryIndexes(false);
        projectBuilder.removeReplicatedSecondaryIndexes();
        assert(projectBuilder != null);
        return (projectBuilder);
    }
   
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.