Skip to content

Commit

Permalink
test(risingwave): skip semi join test that times out (#8351)
Browse files Browse the repository at this point in the history
  • Loading branch information
cpcloud authored Feb 14, 2024
1 parent 8130169 commit 8d3fe7f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions ibis/backends/tests/test_join.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,9 @@ def test_semi_join_topk(con, batting, awards_players, func):
if con.name == "sqlite":
# TODO: remove after CTE extraction is reimplemented
pytest.skip("topk -> semi-join performance has increased post SQLGlot refactor")
elif con.name == "risingwave":
# e.g., https://github.com/ibis-project/ibis/actions/runs/7900463100/job/21562034052
pytest.skip("risingwave times out on semi join topk")
batting = batting.mutate(year=batting.yearID)
left = func(batting, batting.year.topk(5)).select("year", "RBI")
expr = left.join(awards_players, left.year == awards_players.yearID)
Expand Down

0 comments on commit 8d3fe7f

Please sign in to comment.