diff --git a/ibis/backends/tests/test_sql.py b/ibis/backends/tests/test_sql.py index 777cfa3db8bb..4d1a3d678ce7 100644 --- a/ibis/backends/tests/test_sql.py +++ b/ibis/backends/tests/test_sql.py @@ -102,10 +102,13 @@ def test_isin_bug(con, snapshot): raises=NotImplementedError, ) @pytest.mark.notyet( - ["datafusion", "exasol", "oracle", "flink", "risingwave"], + ["datafusion", "exasol", "oracle", "flink"], reason="no unnest support", raises=exc.OperationNotDefinedError, ) +@pytest.mark.notyet( + ["risingwave"], reason="no arbitrary support", raises=exc.OperationNotDefinedError +) @pytest.mark.notyet( ["sqlite", "mysql", "druid", "impala", "mssql"], reason="no unnest support upstream" )