Deveel.Data.Sql.Query.QueryPlanNodeVisitor.VisitExhaustiveSelect C# (CSharp) 메소드

VisitExhaustiveSelect() 보호된 메소드

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

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