mirror of https://github.com/go-redis/redis.git
Remove unnecessary additions
This commit is contained in:
parent
aa69e5ebec
commit
66295d8299
|
@ -82,13 +82,6 @@ const (
|
||||||
Max
|
Max
|
||||||
Range
|
Range
|
||||||
Count
|
Count
|
||||||
CountDistinct
|
|
||||||
CountDistinctish
|
|
||||||
StdDev
|
|
||||||
Quantile
|
|
||||||
ToList
|
|
||||||
FirstValue
|
|
||||||
RandomSample
|
|
||||||
First
|
First
|
||||||
Last
|
Last
|
||||||
StdP
|
StdP
|
||||||
|
@ -114,20 +107,6 @@ func (a Aggregator) String() string {
|
||||||
return "RANGE"
|
return "RANGE"
|
||||||
case Count:
|
case Count:
|
||||||
return "COUNT"
|
return "COUNT"
|
||||||
case CountDistinct:
|
|
||||||
return "COUNT_DISTINCT"
|
|
||||||
case CountDistinctish:
|
|
||||||
return "COUNT_DISTINCTISH"
|
|
||||||
case StdDev:
|
|
||||||
return "STDDEV"
|
|
||||||
case Quantile:
|
|
||||||
return "QUANTILE"
|
|
||||||
case ToList:
|
|
||||||
return "TOLIST"
|
|
||||||
case FirstValue:
|
|
||||||
return "FIRST_VALUE"
|
|
||||||
case RandomSample:
|
|
||||||
return "RANDOM_SAMPLE"
|
|
||||||
case First:
|
case First:
|
||||||
return "FIRST"
|
return "FIRST"
|
||||||
case Last:
|
case Last:
|
||||||
|
|
Loading…
Reference in New Issue