Package plan_runner.query_plans

Examples of plan_runner.query_plans.TPCH7Plan


    else if (queryName.equalsIgnoreCase("tpch5"))
      queryPlan = new TPCH5Plan(dataPath, extension, conf).getQueryPlan();
    else if (queryName.equalsIgnoreCase("tpch5avg"))
      queryPlan = new TPCH5PlanAvg(dataPath, extension, conf).getQueryPlan();
    else if (queryName.equalsIgnoreCase("tpch7"))
      queryPlan = new TPCH7Plan(dataPath, extension, conf).getQueryPlan();
    else if (queryName.equalsIgnoreCase("tpch8"))
      queryPlan = new TPCH8Plan(dataPath, extension, conf).getQueryPlan();
    else if (queryName.equalsIgnoreCase("tpch9"))
      queryPlan = new TPCH9Plan(dataPath, extension, conf).getQueryPlan();
    else if (queryName.equalsIgnoreCase("tpch10"))
View Full Code Here

TOP

Related Classes of plan_runner.query_plans.TPCH7Plan

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.