File tree Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 1
1
services :
2
2
clickhouse :
3
- image : clickhouse/clickhouse-server:25.5.3.75 -alpine
3
+ image : clickhouse/clickhouse-server:25.6.2.5 -alpine
4
4
ports :
5
5
- 8123:8123 # http port
6
6
- 9000:9000 # native protocol port
Original file line number Diff line number Diff line change @@ -90,6 +90,7 @@ def connect(
90
90
91
91
# without this setting TPC-DS 19 and 24 will fail
92
92
settings .setdefault ("allow_experimental_join_condition" , 1 )
93
+ settings .setdefault ("enable_time_time64_type" , 1 )
93
94
94
95
return ibis .clickhouse .connect (
95
96
host = CLICKHOUSE_HOST ,
Original file line number Diff line number Diff line change 18
18
from ibis import _
19
19
from ibis .backends .tests .errors import (
20
20
ClickHouseDatabaseError ,
21
+ ClickHouseInternalError ,
21
22
ExaQueryError ,
22
23
GoogleBadRequest ,
23
24
ImpalaHiveServer2Error ,
@@ -1215,6 +1216,12 @@ def test_isin_uncorrelated_filter(
1215
1216
pytest .mark .notyet (
1216
1217
["athena" ], raises = PyAthenaOperationalError , reason = "no time type"
1217
1218
),
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
+ ),
1218
1225
],
1219
1226
),
1220
1227
],
You can’t perform that action at this time.
0 commit comments