Skip to content

Commit

Permalink
feat(clickhouse): implement INTERSECT ALL/EXCEPT ALL
Browse files Browse the repository at this point in the history
  • Loading branch information
cpcloud committed Sep 23, 2022
1 parent e452603 commit f65fbc3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ibis/backends/tests/test_set_ops.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def test_union_mixed_distinct(backend, union_subsets):
param(
False,
marks=pytest.mark.notyet(
["clickhouse", "dask", "pandas", "sqlite"],
["dask", "pandas", "sqlite"],
reason="backend doesn't support INTERSECT ALL",
),
id="all",
Expand Down Expand Up @@ -98,7 +98,7 @@ def test_intersect(backend, alltypes, df, distinct):
param(
False,
marks=pytest.mark.notyet(
["clickhouse", "dask", "pandas", "sqlite"],
["dask", "pandas", "sqlite"],
reason="backend doesn't support EXCEPT ALL",
),
id="all",
Expand Down

0 comments on commit f65fbc3

Please sign in to comment.