diff --git a/src/infi/clickhouse_orm/funcs.py b/src/infi/clickhouse_orm/funcs.py index e2ded48..4f6cd4a 100644 --- a/src/infi/clickhouse_orm/funcs.py +++ b/src/infi/clickhouse_orm/funcs.py @@ -1633,6 +1633,16 @@ class F(Cond, FunctionOperatorsMixin, metaclass=FMeta): def varSamp(x): return F('varSamp', x) + @staticmethod + @aggregate + def stddevPop(expr): + return F('stddevPop', expr) + + @staticmethod + @aggregate + def stddevSamp(expr): + return F('stddevSamp', expr) + @staticmethod @aggregate @parametric