Skip to content

Commit 375ba7e

Browse files
meteoFurletovclaude
andcommitted
Add secure field to ClickHouse connection config
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 8f092ac commit 375ba7e

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

sqlmesh/core/config/connection.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2094,6 +2094,7 @@ class ClickhouseConnectionConfig(ConnectionConfig):
20942094
https_proxy: t.Optional[str] = None
20952095
server_host_name: t.Optional[str] = None
20962096
tls_mode: t.Optional[str] = None
2097+
secure: bool = False
20972098

20982099
concurrent_tasks: int = 1
20992100
register_comments: bool = True
@@ -2130,6 +2131,7 @@ def _connection_kwargs_keys(self) -> t.Set[str]:
21302131
"https_proxy",
21312132
"server_host_name",
21322133
"tls_mode",
2134+
"secure",
21332135
}
21342136
return kwargs
21352137

0 commit comments

Comments
 (0)