Package com.alibaba.wasp.plan

Examples of com.alibaba.wasp.plan.AggregateQueryPlan


    List<ColumnStruct> conditionColumns = buildAllConditionColumns(table, queryInfo);
    ScanAction scanAction = new ScanAction(table.getTableName());
    scanAction.setNotIndexConditionColumns(conditionColumns);

    DQLPlan qp = new AggregateQueryPlan(scanAction, table);
    qp.setQueryInfo(queryInfo);
    LOG.debug("QueryPlan " + qp);
    context.setPlan(qp);

  }
View Full Code Here

TOP

Related Classes of com.alibaba.wasp.plan.AggregateQueryPlan

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.