Skip to content

Commit

Permalink
feat(clickhouse): implement array collect
Browse files Browse the repository at this point in the history
  • Loading branch information
cpcloud committed May 13, 2022
1 parent 98ecb09 commit 8b2577d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions ibis/backends/clickhouse/registry.py
Original file line number Diff line number Diff line change
Expand Up @@ -658,6 +658,7 @@ def _string_right(translator, expr):
ops.Sum: _agg('sum'),
ops.Max: _agg('max'),
ops.Min: _agg('min'),
ops.ArrayCollect: _agg('groupArray'),
ops.StandardDev: _agg_variance_like('stddev'),
ops.Variance: _agg_variance_like('var'),
ops.GroupConcat: _group_concat,
Expand Down

0 comments on commit 8b2577d

Please sign in to comment.