Skip to content
Open
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
Add secure field to ClickHouse connection config
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
  • Loading branch information
meteoFurletov and claude committed Mar 30, 2026
commit 375ba7e250b1015bd9b4c1b8649d735cdd376048
2 changes: 2 additions & 0 deletions sqlmesh/core/config/connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -2130,6 +2131,7 @@ def _connection_kwargs_keys(self) -> t.Set[str]:
"https_proxy",
"server_host_name",
"tls_mode",
"secure",
}
return kwargs

Expand Down