Add a workaround for the clickhouse 24.9+ problem causing an error (#12767)

## Problem
We used ClickHouse v. 24.8, which is outdated, for logical replication
testing. We could miss some problems.
## Summary of changes
The version was updated to 25.6, with a workaround using the environment
variable `PGSSLCERT`.

Co-authored-by: Alexey Masterov <alexey.masterov@databricks.com>
This commit is contained in:
a-masterov
2025-07-29 12:19:10 +02:00
committed by GitHub
parent 30b57334ef
commit 1ed7252950

View File

@@ -72,9 +72,10 @@ jobs:
options: --init --user root options: --init --user root
services: services:
clickhouse: clickhouse:
image: clickhouse/clickhouse-server:24.8 image: clickhouse/clickhouse-server:25.6
env: env:
CLICKHOUSE_PASSWORD: ${{ needs.generate-ch-tmppw.outputs.tmp_val }} CLICKHOUSE_PASSWORD: ${{ needs.generate-ch-tmppw.outputs.tmp_val }}
PGSSLCERT: /tmp/postgresql.crt
ports: ports:
- 9000:9000 - 9000:9000
- 8123:8123 - 8123:8123