From 375ba7e250b1015bd9b4c1b8649d735cdd376048 Mon Sep 17 00:00:00 2001 From: Nikita Furletov Date: Mon, 30 Mar 2026 17:11:15 +0300 Subject: [PATCH] Add `secure` field to ClickHouse connection config Co-Authored-By: Claude Opus 4.6 --- sqlmesh/core/config/connection.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sqlmesh/core/config/connection.py b/sqlmesh/core/config/connection.py index 7a002faebb..226be211e5 100644 --- a/sqlmesh/core/config/connection.py +++ b/sqlmesh/core/config/connection.py @@ -2094,6 +2094,7 @@ class ClickhouseConnectionConfig(ConnectionConfig): https_proxy: t.Optional[str] = None server_host_name: t.Optional[str] = None tls_mode: t.Optional[str] = None + secure: bool = False concurrent_tasks: int = 1 register_comments: bool = True @@ -2130,6 +2131,7 @@ def _connection_kwargs_keys(self) -> t.Set[str]: "https_proxy", "server_host_name", "tls_mode", + "secure", } return kwargs