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