Package org.apache.tajo.engine.parser

Examples of org.apache.tajo.engine.parser.HiveQLAnalyzer


  }

  public void start() {
    try  {
      analyzer = new SQLAnalyzer();
      converter = new HiveQLAnalyzer();
      preVerifier = new PreLogicalPlanVerifier(context.getCatalog());
      planner = new LogicalPlanner(context.getCatalog());
      optimizer = new LogicalOptimizer(context.getConf());
      annotatedPlanVerifier = new LogicalPlanVerifier(context.getConf(), context.getCatalog());
View Full Code Here


      CatalogService catalog = getQueryTaskContext().getQueryMasterContext().getWorkerContext().getCatalog();
      LogicalPlanner planner = new LogicalPlanner(catalog);
      LogicalOptimizer optimizer = new LogicalOptimizer(systemConf);
      Expr expr;
      if (queryContext.isHiveQueryMode()) {
        HiveQLAnalyzer HiveQLAnalyzer = new HiveQLAnalyzer();
        expr = HiveQLAnalyzer.parse(sql);
      } else {
        SQLAnalyzer analyzer = new SQLAnalyzer();
        expr = analyzer.parse(sql);
      }
      LogicalPlan plan = planner.createPlan(session, expr);
View Full Code Here

TOP

Related Classes of org.apache.tajo.engine.parser.HiveQLAnalyzer

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.