예제 #1
0
 public AggregationFactoryMethodCountEver(
     ExprCountEverNode parent,
     bool ignoreNulls)
 {
     this.parent = parent;
     this.ignoreNulls = ignoreNulls;
 }
예제 #2
0
 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;
 }
예제 #4
0
 public AggregationMethodFactoryCountEver(ExprCountEverNode parent, bool ignoreNulls)
 {
     Parent      = parent;
     IgnoreNulls = ignoreNulls;
 }