private BoundExpression BindExistsSubselect(ExistsSubselectSyntax node) { // TODO: Ensure query has no ORDER BY unless TOP is also specified var boundQuery = BindSubquery(node.Query); // NOTE: Number of columns doesn't matter here return(new BoundExistsSubselect(boundQuery.Relation)); }
public virtual void VisitExistsSubselect(ExistsSubselectSyntax node) { DefaultVisit(node); }
public virtual TResult VisitExistsSubselect(ExistsSubselectSyntax node) { return(DefaultVisit(node)); }