Package org.voltdb.PlannerStatsCollector

Examples of org.voltdb.PlannerStatsCollector.CacheUse


        StatementPartitioning infer = StatementPartitioning.inferPartitioning();
        return planSql(sqlIn, infer);
    }

    AdHocPlannedStatement planSql(String sqlIn, StatementPartitioning partitioning) {
        CacheUse cacheUse = CacheUse.FAIL;
        if (m_plannerStats != null) {
            m_plannerStats.startStatsCollection();
        }
        try {
            if ((sqlIn == null) || (sqlIn.length() == 0)) {
View Full Code Here

TOP

Related Classes of org.voltdb.PlannerStatsCollector.CacheUse

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.