// <summary> // Clone an aggregateop // </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(AggregateOp op, Node n) { return(CopyDefault(m_destCmd.CreateAggregateOp(op.AggFunc, op.IsDistinctAggregate), n)); }
public virtual void Visit(AggregateOp op, Node n) { this.VisitScalarOpDefault((ScalarOp)op, n); }
/// <summary> /// Visitor pattern method for AggregateOp /// </summary> /// <param name="op"> The AggregateOp being visited </param> /// <param name="n"> The Node that references the Op </param> public virtual void Visit(AggregateOp op, Node n) { VisitScalarOpDefault(op, n); }
public override void Visit(AggregateOp op, Node n) { VisitScalarOpDefault(op, n); }
// <summary> // AggregateOp // </summary> public virtual TResultType Visit(AggregateOp op, Node n) { return(VisitScalarOpDefault(op, n)); }