Example #1
0
        protected override bool EqualsNodeAggregateMethodOnly(ExprAggregateNode node)
        {
            if (!(node is ExprMinMaxAggrNode))
            {
                return(false);
            }

            ExprMinMaxAggrNode other = (ExprMinMaxAggrNode)node;

            return(other._minMaxTypeEnum == _minMaxTypeEnum && other._isEver == _isEver);
        }
Example #2
0
 public ExprMinMaxAggrNodeFactory(ExprMinMaxAggrNode parent, Type type, bool hasDataWindows)
 {
     _parent         = parent;
     _type           = type;
     _hasDataWindows = hasDataWindows;
 }