public AggregationFactoryMethodCountEver( ExprCountEverNode parent, bool ignoreNulls) { this.parent = parent; this.ignoreNulls = ignoreNulls; }
public AggregationMethodFactory MakeCountEver( StatementExtensionSvcContext statementExtensionSvcContext, ExprCountEverNode exprCountEverNode, bool ignoreNulls) { return(new AggregationMethodFactoryCountEver(exprCountEverNode, ignoreNulls)); }
public AggregationForgeFactoryCountEver( ExprCountEverNode parent, bool ignoreNulls, Type childType, DataInputOutputSerdeForge distinctSerde) { this._parent = parent; this._ignoreNulls = ignoreNulls; this._childType = childType; this._distinctSerde = distinctSerde; }
public AggregationMethodFactoryCountEver(ExprCountEverNode parent, bool ignoreNulls) { Parent = parent; IgnoreNulls = ignoreNulls; }