Package com.foundationdb.sql.optimizer.rule.cost.CostEstimator

Examples of com.foundationdb.sql.optimizer.rule.cost.CostEstimator.IndexIntersectionCoster


                    result = cost;
                }
            }
            else if (index instanceof MultiIndexIntersectScan) {
                MultiIndexIntersectScan multiIndex = (MultiIndexIntersectScan) index;
                result = costEstimator.costIndexIntersection(multiIndex, new IndexIntersectionCoster() {
                    @Override
                    public CostEstimate singleIndexScanCost(SingleIndexScan scan, CostEstimator costEstimator) {
                        return getScanOnlyCost(scan);
                    }
                });
View Full Code Here

TOP

Related Classes of com.foundationdb.sql.optimizer.rule.cost.CostEstimator.IndexIntersectionCoster

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.