(&self, acc_args: AccumulatorArgs)
| 116 | } |
| 117 | |
| 118 | fn accumulator(&self, acc_args: AccumulatorArgs) -> Result<Box<dyn Accumulator>> { |
| 119 | if acc_args.is_distinct { |
| 120 | return not_impl_err!("STDDEV_POP(DISTINCT) aggregations are not available"); |
| 121 | } |
| 122 | Ok(Box::new(StddevAccumulator::try_new(StatsType::Sample)?)) |
| 123 | } |
| 124 | |
| 125 | fn aliases(&self) -> &[String] { |
| 126 | &self.alias |