From 8d3fe7f9e46e33b74c5d29a4b34829d6effbeec4 Mon Sep 17 00:00:00 2001 From: Phillip Cloud <417981+cpcloud@users.noreply.github.com> Date: Wed, 14 Feb 2024 13:08:05 -0500 Subject: [PATCH] test(risingwave): skip semi join test that times out (#8351) --- ibis/backends/tests/test_join.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ibis/backends/tests/test_join.py b/ibis/backends/tests/test_join.py index 14d3263a7a2b..c4e9b82ed937 100644 --- a/ibis/backends/tests/test_join.py +++ b/ibis/backends/tests/test_join.py @@ -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)