Inheritance: SingleQueryPlanNode
Ejemplo n.º 1
0
 public void SetCachePoint()
 {
     if (!(Plan is CachePointNode))
     {
         Plan = new CachePointNode(Plan);
     }
 }
Ejemplo n.º 2
0
        protected virtual IQueryPlanNode VisitCachePoint(CachePointNode node)
        {
            var child = node.Child;
            if (child != null)
                child = VisitNode(child);

            return new CachePointNode(child);
        }
Ejemplo n.º 3
0
        protected virtual IQueryPlanNode VisitCachePoint(CachePointNode node)
        {
            var child = node.Child;

            if (child != null)
            {
                child = VisitNode(child);
            }

            return(new CachePointNode(child));
        }
Ejemplo n.º 4
0
 public void SetCachePoint()
 {
     if (!(Plan is CachePointNode))
         Plan = new CachePointNode(Plan);
 }