From 3d7e1470dad36ba94f61bab0e558792cd4cf633d Mon Sep 17 00:00:00 2001 From: Phillip Cloud <417981+cpcloud@users.noreply.github.com> Date: Mon, 14 Oct 2024 07:54:48 -0400 Subject: [PATCH] test(datafusion): xfail on broken tpc q39 --- ibis/backends/tests/tpc/ds/test_queries.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ibis/backends/tests/tpc/ds/test_queries.py b/ibis/backends/tests/tpc/ds/test_queries.py index 8c2fa475a0042..5fc15bcfc87bd 100644 --- a/ibis/backends/tests/tpc/ds/test_queries.py +++ b/ibis/backends/tests/tpc/ds/test_queries.py @@ -1994,6 +1994,7 @@ def test_38(store_sales, catalog_sales, web_sales, date_dim, customer): @tpc_test("ds") +@pytest.mark.notyet(["datafusion"], reason="incorrect results", raises=AssertionError) def test_39(inventory, item, warehouse, date_dim): inv = ( inventory.join(item, [("inv_item_sk", "i_item_sk")])