From f65fbc3fa9d5bd52a5f99024cad78f01bc4f42d3 Mon Sep 17 00:00:00 2001 From: Phillip Cloud <417981+cpcloud@users.noreply.github.com> Date: Fri, 23 Sep 2022 05:16:21 -0400 Subject: [PATCH] feat(clickhouse): implement `INTERSECT ALL`/`EXCEPT ALL` --- ibis/backends/tests/test_set_ops.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ibis/backends/tests/test_set_ops.py b/ibis/backends/tests/test_set_ops.py index 1aea3a7792f9..92c8c7ce78c6 100644 --- a/ibis/backends/tests/test_set_ops.py +++ b/ibis/backends/tests/test_set_ops.py @@ -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", @@ -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",