Skip to content

Commit

Permalink
feat(clickhouse): implement degrees
Browse files Browse the repository at this point in the history
  • Loading branch information
cpcloud authored and kszucs committed May 23, 2022
1 parent 505352b commit 7946c0f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 1 addition & 0 deletions ibis/backends/clickhouse/registry.py
Original file line number Diff line number Diff line change
Expand Up @@ -759,6 +759,7 @@ def compile(translator, expr):
ops.BitAnd: _bit_agg("groupBitAnd"),
ops.BitOr: _bit_agg("groupBitOr"),
ops.BitXor: _bit_agg("groupBitXor"),
ops.Degrees: _unary("degrees"),
}


Expand Down
1 change: 0 additions & 1 deletion ibis/backends/tests/test_numeric.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,6 @@ def test_isnan_isinf(
id='degrees',
marks=pytest.mark.notimpl(
[
"clickhouse",
"dask",
"datafusion",
"impala",
Expand Down

0 comments on commit 7946c0f

Please sign in to comment.