in common/common.go [359:392]
func (p TAggregationType) String() string {
switch p {
case TAggregationType_COUNT: return "COUNT"
case TAggregationType_AVG: return "AVG"
case TAggregationType_SUM: return "SUM"
case TAggregationType_FIRST_VALUE: return "FIRST_VALUE"
case TAggregationType_LAST_VALUE: return "LAST_VALUE"
case TAggregationType_MAX_TIME: return "MAX_TIME"
case TAggregationType_MIN_TIME: return "MIN_TIME"
case TAggregationType_MAX_VALUE: return "MAX_VALUE"
case TAggregationType_MIN_VALUE: return "MIN_VALUE"
case TAggregationType_EXTREME: return "EXTREME"
case TAggregationType_COUNT_IF: return "COUNT_IF"
case TAggregationType_TIME_DURATION: return "TIME_DURATION"
case TAggregationType_MODE: return "MODE"
case TAggregationType_COUNT_TIME: return "COUNT_TIME"
case TAggregationType_STDDEV: return "STDDEV"
case TAggregationType_STDDEV_POP: return "STDDEV_POP"
case TAggregationType_STDDEV_SAMP: return "STDDEV_SAMP"
case TAggregationType_VARIANCE: return "VARIANCE"
case TAggregationType_VAR_POP: return "VAR_POP"
case TAggregationType_VAR_SAMP: return "VAR_SAMP"
case TAggregationType_MAX_BY: return "MAX_BY"
case TAggregationType_MIN_BY: return "MIN_BY"
case TAggregationType_UDAF: return "UDAF"
case TAggregationType_FIRST: return "FIRST"
case TAggregationType_LAST: return "LAST"
case TAggregationType_FIRST_BY: return "FIRST_BY"
case TAggregationType_LAST_BY: return "LAST_BY"
case TAggregationType_MIN: return "MIN"
case TAggregationType_MAX: return "MAX"
}
return "<UNSET>"
}