Package plan_runner.query_plans

Examples of plan_runner.query_plans.ThetaTPCH10Plan


    else if (queryName.equalsIgnoreCase("theta_tpch8"))
      queryPlan = new ThetaTPCH8Plan(dataPath, extension, conf).getQueryPlan();
    else if (queryName.equalsIgnoreCase("theta_tpch9"))
      queryPlan = new ThetaTPCH9Plan(dataPath, extension, conf).getQueryPlan();
    else if (queryName.equalsIgnoreCase("theta_tpch10"))
      queryPlan = new ThetaTPCH10Plan(dataPath, extension, conf).getQueryPlan();
    else if (queryName.equalsIgnoreCase("theta_input_dominated"))
      queryPlan = new ThetaInputDominatedPlan(dataPath, extension, conf).getQueryPlan();
    else if (queryName.equalsIgnoreCase("theta_output_dominated"))
      queryPlan = new ThetaOutputDominatedPlan(dataPath, extension, conf).getQueryPlan();
    else if (queryName.equalsIgnoreCase("theta_multiple_join"))
View Full Code Here

TOP

Related Classes of plan_runner.query_plans.ThetaTPCH10Plan

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.