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

VisitSimpleSelect() protected method

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

            return base.VisitSimpleSelect(node);
        }