Skip to content

Commit

Permalink
chore(datafusion): disable broken array_position test
Browse files Browse the repository at this point in the history
  • Loading branch information
cpcloud committed Jan 3, 2024
1 parent 2f2ed69 commit 12954e2
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions ibis/backends/tests/test_array.py
Original file line number Diff line number Diff line change
Expand Up @@ -478,6 +478,9 @@ def test_array_contains(backend, con):
["dask", "impala", "mssql", "pandas", "polars"],
raises=com.OperationNotDefinedError,
)
@pytest.mark.broken(
["datafusion"], reason="internal error as of 34.0.0", raises=Exception
)
def test_array_position(backend, con):
t = ibis.memtable({"a": [[1], [], [42, 42], []]})
expr = t.a.index(42)
Expand Down

0 comments on commit 12954e2

Please sign in to comment.