Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test(risingwave): bump to latest risingwave release and enable now-passing tests #10001

Merged
merged 1 commit into from
Sep 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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