Skip to content

Commit

Permalink
test(risingwave): bump to latest risingwave release and enable now-pa…
Browse files Browse the repository at this point in the history
…ssing tests
  • Loading branch information
cpcloud committed Sep 3, 2024
1 parent 4d8d352 commit b00dda1
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 14 deletions.
2 changes: 1 addition & 1 deletion compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
8 changes: 0 additions & 8 deletions ibis/backends/tests/test_array.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
Expand Down Expand Up @@ -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",
),
Expand Down
5 changes: 0 additions & 5 deletions ibis/backends/tests/test_window.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
#
Expand Down

0 comments on commit b00dda1

Please sign in to comment.