diff --git a/compose.yaml b/compose.yaml index 1fd064090940d..58920f6d6b85a 100644 --- a/compose.yaml +++ b/compose.yaml @@ -547,7 +547,7 @@ services: - impala risingwave: - image: ghcr.io/risingwavelabs/risingwave:nightly-20240204 + image: ghcr.io/risingwavelabs/risingwave:v1.10.1 command: "standalone --meta-opts=\" \ --advertise-addr 0.0.0.0:5690 \ --backend mem \ diff --git a/ibis/backends/tests/test_array.py b/ibis/backends/tests/test_array.py index fd5143d7d2d7f..bc72591bf0ab2 100644 --- a/ibis/backends/tests/test_array.py +++ b/ibis/backends/tests/test_array.py @@ -679,9 +679,6 @@ def test_array_remove(con, input, expected): raises=(AssertionError, GoogleBadRequest), reason="bigquery doesn't support null elements in arrays", ) -@pytest.mark.notimpl( - ["risingwave"], raises=AssertionError, reason="TODO(Kexiang): seems a bug" -) @pytest.mark.notyet( ["flink"], raises=Py4JJavaError, reason="empty arrays not supported" ) @@ -720,11 +717,6 @@ def test_array_unique(con, input, expected): raises=Py4JJavaError, reason="flink cannot handle empty arrays", ), - pytest.mark.notyet( - ["risingwave"], - raises=AssertionError, - reason="Refer to https://github.com/risingwavelabs/risingwave/issues/14735", - ), ], id="empty", ), diff --git a/ibis/backends/tests/test_window.py b/ibis/backends/tests/test_window.py index 1ab3b66891881..a2664eef47075 100644 --- a/ibis/backends/tests/test_window.py +++ b/ibis/backends/tests/test_window.py @@ -921,11 +921,6 @@ def test_ungrouped_unbounded_window( raises=MySQLOperationalError, reason="https://github.com/tobymao/sqlglot/issues/2779", ) -@pytest.mark.notimpl( - ["risingwave"], - raises=PsycoPg2InternalError, - reason="Feature is not yet implemented: window frame in `RANGE` mode is not supported yet", -) def test_grouped_bounded_range_window(backend, alltypes, df): # Explanation of the range window spec below: #