Package plan_runner.query_plans

Examples of plan_runner.query_plans.ThetaHyracksPlan


    else if (queryName.equalsIgnoreCase("theta_output_dominated"))
      queryPlan = new ThetaOutputDominatedPlan(dataPath, extension, conf).getQueryPlan();
    else if (queryName.equalsIgnoreCase("theta_multiple_join"))
      queryPlan = new ThetaMultipleJoinPlan(dataPath, extension, conf).getQueryPlan();
    else if (queryName.equalsIgnoreCase("theta_hyracks"))
      queryPlan = new ThetaHyracksPlan(dataPath, extension, conf).getQueryPlan();
    if (queryPlan == null)
      throw new RuntimeException("QueryPlan " + queryName + " doesn't exist in Main.java");
    return queryPlan;
  }
View Full Code Here

TOP

Related Classes of plan_runner.query_plans.ThetaHyracksPlan

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.