public override Node Visit(ScanTableOp op, Node n)
        {
            ScanTableOp scanTableOp = this.m_destCmd.CreateScanTableOp(op.Table.TableMetadata);

            this.MapTable(scanTableOp.Table, op.Table);
            return(this.m_destCmd.CreateNode((Op)scanTableOp));
        }
예제 #2
0
 public override void Visit(ScanTableOp op, Node n)
 {
     using (new AutoXml(this, op))
     {
         DumpTable(op.Table);
         VisitChildren(n);
     }
 }
예제 #3
0
 public override void Visit(ScanTableOp op, Node n)
 {
     using (new Dump.AutoXml(this, (Op)op))
     {
         this.DumpTable(op.Table);
         this.VisitChildren(n);
     }
 }
예제 #4
0
        // <summary>
        // Copies a ScanTableOp
        // </summary>
        // <param name="op"> The Op to Copy </param>
        // <param name="n"> The Node that references the Op </param>
        // <returns> A copy of the original Node that references a copy of the original Op </returns>
        public override Node Visit(ScanTableOp op, Node n)
        {
            // First create a new ScanTableOp based on the metadata of the existing Op
            var newScan = m_destCmd.CreateScanTableOp(op.Table.TableMetadata);

            // Map the corresponding tables/columns
            MapTable(newScan.Table, op.Table);

            // Create the new node
            Debug.Assert(!n.HasChild0);
            return(m_destCmd.CreateNode(newScan));
        }
 public virtual void Visit(ScanTableOp op, Node n)
 {
     this.VisitTableOp((ScanTableBaseOp)op, n);
 }
예제 #6
0
 public override void Visit(ScanTableOp op, Node n)
 {
     VisitRelOpDefault(op, n);
 }
예제 #7
0
 /// <summary>
 ///     Visitor pattern method for ScanTableOp
 /// </summary>
 /// <param name="op"> The ScanTableOp being visited </param>
 /// <param name="n"> The Node that references the Op </param>
 public virtual void Visit(ScanTableOp op, Node n)
 {
     VisitTableOp(op, n);
 }
예제 #8
0
 // <summary>
 // ScanTableOp
 // </summary>
 public virtual TResultType Visit(ScanTableOp op, Node n)
 {
     return(VisitTableOp(op, n));
 }
 public virtual TResultType Visit(ScanTableOp op, Node n)
 {
     return(this.VisitTableOp((ScanTableBaseOp)op, n));
 }