public class RealAverageAggregation extends SqlAggregationFunction
| Modifier and Type | Field and Description |
|---|---|
static RealAverageAggregation |
REAL_AVERAGE_AGGREGATION |
| Modifier | Constructor and Description |
|---|---|
protected |
RealAverageAggregation() |
| Modifier and Type | Method and Description |
|---|---|
static void |
combine(LongState count,
DoubleState sum,
LongState otherCount,
DoubleState otherSum) |
String |
getDescription() |
static void |
input(LongState count,
DoubleState sum,
long value) |
static void |
output(LongState count,
DoubleState sum,
BlockBuilder out) |
InternalAggregationFunction |
specialize(BoundVariables boundVariables,
int arity,
TypeManager typeManager,
FunctionRegistry functionRegistry) |
createFunctionByAnnotations, createFunctionsByAnnotations, getSignature, isDeterministic, isHiddenpublic static final RealAverageAggregation REAL_AVERAGE_AGGREGATION
public String getDescription()
public InternalAggregationFunction specialize(BoundVariables boundVariables, int arity, TypeManager typeManager, FunctionRegistry functionRegistry)
specialize in class SqlAggregationFunctionpublic static void input(LongState count, DoubleState sum, long value)
public static void combine(LongState count, DoubleState sum, LongState otherCount, DoubleState otherSum)
public static void output(LongState count, DoubleState sum, BlockBuilder out)
Copyright © 2012–2019. All rights reserved.