Skip to content

Commit c47a1c6

Browse files
committed
test(clickhouse): enable xpassing tests
1 parent a3c3a9f commit c47a1c6

File tree

2 files changed

+1
-12
lines changed

2 files changed

+1
-12
lines changed

ibis/backends/tests/test_generic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ def test_coalesce(con, expr, expected):
256256
assert result == pytest.approx(expected)
257257

258258

259-
@pytest.mark.notimpl(["clickhouse", "druid", "exasol"])
259+
@pytest.mark.notimpl(["druid", "exasol"])
260260
def test_identical_to(backend, alltypes, sorted_df):
261261
sorted_alltypes = alltypes.order_by("id")
262262
df = sorted_df

ibis/backends/tests/tpc/h/test_queries.py

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -111,11 +111,6 @@ def test_03(customer, orders, lineitem):
111111
return q
112112

113113

114-
@pytest.mark.notyet(
115-
["clickhouse"],
116-
raises=ClickHouseDatabaseError,
117-
reason="correlated subqueries don't exist in clickhouse",
118-
)
119114
@tpc_test("h")
120115
def test_04(orders, lineitem):
121116
"""Order Priority Checking Query (Q4)"""
@@ -410,7 +405,6 @@ def test_12(orders, lineitem):
410405

411406

412407
@tpc_test("h")
413-
@pytest.mark.notyet(["clickhouse"], raises=AssertionError, reason="off by one")
414408
def test_13(customer, orders):
415409
"""Customer Distribution Query (Q13)
416410
@@ -667,11 +661,6 @@ def test_20(supplier, nation, partsupp, part, lineitem):
667661
return q1.order_by(q1.s_name)
668662

669663

670-
@pytest.mark.notyet(
671-
["clickhouse"],
672-
raises=ClickHouseDatabaseError,
673-
reason="correlated subqueries don't exist in clickhouse",
674-
)
675664
@tpc_test("h")
676665
def test_21(supplier, lineitem, orders, nation):
677666
"""Suppliers Who Kept Orders Waiting Query (Q21)

0 commit comments

Comments
 (0)