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

VisitExhaustiveSelect() protected method

protected VisitExhaustiveSelect ( ExhaustiveSelectNode node ) : IQueryPlanNode
node ExhaustiveSelectNode
return IQueryPlanNode
        protected override IQueryPlanNode VisitExhaustiveSelect(ExhaustiveSelectNode node)
        {
            if (node.Expression != null)
                node.Expression.DiscoverAccessedResources(tableNames);

            return base.VisitExhaustiveSelect(node);
        }