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