use of org.apache.asterix.lang.sqlpp.rewrites.visitor.SqlppGroupByVisitor in project asterixdb by apache.
the class SqlppQueryRewriter method rewriteGroupBys.
protected void rewriteGroupBys() throws CompilationException {
SqlppGroupByVisitor groupByVisitor = new SqlppGroupByVisitor(context);
topExpr.accept(groupByVisitor, null);
}
Aggregations