Skip to content

Commit

Permalink
test(datafusion): unxfail tpcds queries 90, 39, and 27
Browse files Browse the repository at this point in the history
  • Loading branch information
cpcloud committed Sep 17, 2024
1 parent e23bffb commit 9372ce8
Showing 1 changed file with 1 addition and 16 deletions.
17 changes: 1 addition & 16 deletions ibis/backends/tests/tpc/ds/test_queries.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,7 @@
from ibis import _, coalesce, cumulative_window, date, ifelse, null, rank, union
from ibis import literal as lit
from ibis import selectors as s
from ibis.backends.tests.errors import (
ArrowNotImplementedError,
ClickHouseDatabaseError,
TrinoUserError,
)
from ibis.backends.tests.errors import ClickHouseDatabaseError, TrinoUserError
from ibis.backends.tests.tpc.conftest import tpc_test
from ibis.common.exceptions import OperationNotDefinedError

Expand Down Expand Up @@ -1416,7 +1412,6 @@ def test_26(catalog_sales, customer_demographics, date_dim, item, promotion):


@tpc_test("ds")
@pytest.mark.notyet(["datafusion"], reason="Failed to plan")
def test_27(store_sales, customer_demographics, date_dim, store, item):
results = (
store_sales.join(customer_demographics, [("ss_cdemo_sk", "cd_demo_sk")])
Expand Down Expand Up @@ -1999,11 +1994,6 @@ def test_38(store_sales, catalog_sales, web_sales, date_dim, customer):


@tpc_test("ds")
@pytest.mark.notyet(
["datafusion"],
raises=ArrowNotImplementedError,
reason="Unsupported cast from double to null using function cast_null",
)
def test_39(inventory, item, warehouse, date_dim):
inv = (
inventory.join(item, [("inv_item_sk", "i_item_sk")])
Expand Down Expand Up @@ -4894,11 +4884,6 @@ def test_89(item, store_sales, date_dim, store):
).limit(100)


@pytest.mark.notyet(
["datafusion"],
raises=ArrowNotImplementedError,
reason="Unsupported cast from double to null using function cast_null",
)
@tpc_test("ds")
def test_90(web_sales, household_demographics, time_dim, web_page):
def am_pm(*, hour: int, name: str):
Expand Down

0 comments on commit 9372ce8

Please sign in to comment.