Skip to content

Commit b5f06dc

Browse files
chore(deps): update clickhouse/clickhouse-server docker tag to v25.6.2.5 (#11395)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Phillip Cloud <[email protected]>
1 parent dc3df70 commit b5f06dc

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
clickhouse:
3-
image: clickhouse/clickhouse-server:25.5.3.75-alpine
3+
image: clickhouse/clickhouse-server:25.6.2.5-alpine
44
ports:
55
- 8123:8123 # http port
66
- 9000:9000 # native protocol port

ibis/backends/clickhouse/tests/conftest.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ def connect(
9090

9191
# without this setting TPC-DS 19 and 24 will fail
9292
settings.setdefault("allow_experimental_join_condition", 1)
93+
settings.setdefault("enable_time_time64_type", 1)
9394

9495
return ibis.clickhouse.connect(
9596
host=CLICKHOUSE_HOST,

ibis/backends/tests/test_generic.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
from ibis import _
1919
from ibis.backends.tests.errors import (
2020
ClickHouseDatabaseError,
21+
ClickHouseInternalError,
2122
ExaQueryError,
2223
GoogleBadRequest,
2324
ImpalaHiveServer2Error,
@@ -1215,6 +1216,12 @@ def test_isin_uncorrelated_filter(
12151216
pytest.mark.notyet(
12161217
["athena"], raises=PyAthenaOperationalError, reason="no time type"
12171218
),
1219+
pytest.mark.notyet(
1220+
["clickhouse"],
1221+
raises=ClickHouseInternalError,
1222+
reason="time type not supported in clickhouse_connect; "
1223+
"see https://github.com/ClickHouse/clickhouse-connect/issues/509",
1224+
),
12181225
],
12191226
),
12201227
],

0 commit comments

Comments
 (0)