Deveel.Data.Sql.Query.QueryPlanNodeVisitor.VisitExhaustiveSelect C# (CSharp) Method

VisitExhaustiveSelect() protected method

protected VisitExhaustiveSelect ( ExhaustiveSelectNode node ) : IQueryPlanNode
node ExhaustiveSelectNode
return IQueryPlanNode
        protected virtual IQueryPlanNode VisitExhaustiveSelect(ExhaustiveSelectNode node)
        {
            var child = node.Child;
            if (child != null)
                child = VisitNode(child);

            return new ExhaustiveSelectNode(child, node.Expression);
        }