Skip to content

Commit

Permalink
fixup! fixup! fix(structs): ensure that isin works with struct member…
Browse files Browse the repository at this point in the history
…ship
  • Loading branch information
cpcloud committed Apr 18, 2024
1 parent 9097597 commit 2fc3f25
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions ibis/backends/tests/test_struct.py
Original file line number Diff line number Diff line change
Expand Up @@ -259,6 +259,11 @@ def test_keyword_fields(con, nullable):
reason="requires pyspark 3.5",
raises=PySparkAnalysisException,
)
@pytest.mark.notimpl(
["flink"],
raises=Py4JJavaError,
reason="fails to parse due to an unsupported operation; flink docs say the syntax is supported",
)
def test_isin_struct(con):
needle1 = ibis.struct({"x": 1, "y": 2})
needle2 = ibis.struct({"x": 2, "y": 3})
Expand Down

0 comments on commit 2fc3f25

Please sign in to comment.