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

chore(deps): update apache/druid docker tag to v30 #9386

Merged
merged 2 commits into from
Jun 14, 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
10 changes: 5 additions & 5 deletions compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ services:
- druid

druid-coordinator:
image: apache/druid:29.0.1
image: apache/druid:30.0.0
hostname: coordinator
container_name: coordinator
volumes:
Expand All @@ -224,7 +224,7 @@ services:
- druid

druid-broker:
image: apache/druid:29.0.1
image: apache/druid:30.0.0
hostname: broker
container_name: broker
volumes:
Expand Down Expand Up @@ -252,7 +252,7 @@ services:
- druid

druid-historical:
image: apache/druid:29.0.1
image: apache/druid:30.0.0
hostname: historical
container_name: historical
volumes:
Expand All @@ -279,7 +279,7 @@ services:
- druid

druid-middlemanager:
image: apache/druid:29.0.1
image: apache/druid:30.0.0
hostname: middlemanager
container_name: middlemanager
volumes:
Expand Down Expand Up @@ -307,7 +307,7 @@ services:
- druid

druid:
image: apache/druid:29.0.1
image: apache/druid:30.0.0
hostname: router
container_name: router
volumes:
Expand Down
4 changes: 2 additions & 2 deletions ibis/backends/tests/test_generic.py
Original file line number Diff line number Diff line change
Expand Up @@ -872,14 +872,14 @@ def test_isin_notin(backend, alltypes, df, ibis_op, pandas_op):
backend.assert_frame_equal(result, expected)


@pytest.mark.notimpl(["druid"])
@pytest.mark.parametrize(
("ibis_op", "pandas_op"),
[
param(
_.string_col.isin(_.string_col),
lambda df: df.string_col.isin(df.string_col),
id="isin_col",
marks=pytest.mark.notimpl(["druid"]),
),
param(
(_.bigint_col + 1).isin(_.string_col.length() + 1),
Expand All @@ -896,7 +896,7 @@ def test_isin_notin(backend, alltypes, df, ibis_op, pandas_op):
(_.bigint_col + 1).notin(_.string_col.length() + 1),
lambda df: ~(df.bigint_col.add(1)).isin(df.string_col.str.len().add(1)),
id="notin_expr",
marks=[pytest.mark.notimpl(["datafusion"])],
marks=[pytest.mark.notimpl(["datafusion", "druid"])],
),
],
)
Expand Down