use of org.apache.asterix.lang.sqlpp.expression.IndependentSubquery in project asterixdb by apache.
the class SqlppCloneAndSubstituteVariablesVisitor method visit.
@Override
public Pair<ILangExpression, VariableSubstitutionEnvironment> visit(IndependentSubquery independentSubquery, VariableSubstitutionEnvironment env) throws CompilationException {
Pair<ILangExpression, VariableSubstitutionEnvironment> p = independentSubquery.getExpr().accept(this, env);
IndependentSubquery newSubquery = new IndependentSubquery((Expression) p.first);
return new Pair<>(newSubquery, p.second);
}
Aggregations