Skip to content

Commit

Permalink
chore: skip weird map types on flink
Browse files Browse the repository at this point in the history
  • Loading branch information
NickCrews committed Mar 19, 2024
1 parent d07e177 commit 1fe6ae6
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ibis/backends/tests/test_map.py
Original file line number Diff line number Diff line change
Expand Up @@ -309,6 +309,7 @@ def test_literal_map_getitem_broadcast(backend, alltypes, df):
@values
@keys
@mark_notimpl_risingwave_hstore
@pytest.mark.notimpl("flink")
def test_map_get_all_types(con, keys, values):
m = ibis.map(ibis.array(keys), ibis.array(values))
for key, val in zip(keys, values):
Expand All @@ -319,6 +320,7 @@ def test_map_get_all_types(con, keys, values):

@keys
@mark_notimpl_risingwave_hstore
@pytest.mark.notimpl("flink")
def test_map_contains_all_types(con, keys):
m = ibis.map(ibis.array(keys), ibis.array(keys))
for key in keys:
Expand Down

0 comments on commit 1fe6ae6

Please sign in to comment.