use of org.apache.asterix.lang.sqlpp.rewrites.visitor.VariableCheckAndRewriteVisitor in project asterixdb by apache.
the class SqlppQueryRewriter method variableCheckAndRewrite.
protected void variableCheckAndRewrite(boolean overwrite) throws CompilationException {
VariableCheckAndRewriteVisitor variableCheckAndRewriteVisitor = new VariableCheckAndRewriteVisitor(context, overwrite, metadataProvider);
topExpr.accept(variableCheckAndRewriteVisitor, null);
}
Aggregations