-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Description
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
The decimal data type has been supported in #122, but in this issue #122 we just support several agg functions.
In this issue we will list some functions which are not implemented for the decimal data type.
-
sum support sum/avg agg for decimal, change sum(float32) --> float64 #1408
-
count/DistinctCount: don't need to implement
-
avg support sum/avg agg for decimal, change sum(float32) --> float64 #1408
-
var(col1): calculate the variance (sample) of col1
-
var_samp(col1): calculate the variance (sample) of col1
-
var_pop(col1): calculate the variance (population) of col1
-
stddev(col1): calculate the standard deviation (sample) of col1
-
stddev_samp(col1): calculate the standard deviation (sample) of col1
-
stddev_pop(col1): calculate the standard deviation (population) of col1
TODO
Describe the solution you'd like
A clear and concise description of what you want to happen.
Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.
Additional context
Add any other context or screenshots about the feature request here.