Package com.foundationdb.server.store.statistics

Examples of com.foundationdb.server.store.statistics.HistogramEntry


                        } else if (compare < 0) {
                            long d = entry.getDistinctCount();
                            return d == 0 ? 0.0 : ((double) entry.getLessCount()) / (d * indexStatsSampledCount);
                        }
                    }
                    HistogramEntry lastEntry = entries.get(entries.size() - 1);
                    long d = lastEntry.getDistinctCount();
                    if (d == 0) {
                        return 1;
                    }
                    return 0.00483;
                }
View Full Code Here

TOP

Related Classes of com.foundationdb.server.store.statistics.HistogramEntry

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.