Search in sources :

Example 1 with SqlppGlobalAggregationSugarVisitor

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);
}
Also used : SqlppGlobalAggregationSugarVisitor(org.apache.asterix.lang.sqlpp.rewrites.visitor.SqlppGlobalAggregationSugarVisitor)

Aggregations

SqlppGlobalAggregationSugarVisitor (org.apache.asterix.lang.sqlpp.rewrites.visitor.SqlppGlobalAggregationSugarVisitor)1