Remove unnecessary additions

This commit is contained in:
ofekshenawa 2023-11-17 00:11:48 +02:00
parent aa69e5ebec
commit 66295d8299
1 changed files with 0 additions and 21 deletions

View File

@ -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: