Package edu.brown.hstore.estimators

Examples of edu.brown.hstore.estimators.MockEstimate


        AbstractTransaction shortest = CollectionUtil.last(this.work_queue);
        for (AbstractTransaction ts : this.work_queue) {
            final long remaining = (ts == shortest ? 10 : 1000);
            EstimatorState state = new EstimatorState(catalogContext) {
                {
                    MockEstimate est = new MockEstimate(remaining);
                    this.addEstimate(est);
                }
            };
            ts.setEstimatorState(state);
        } // FOR
View Full Code Here

TOP

Related Classes of edu.brown.hstore.estimators.MockEstimate

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.