diff --git a/sqlmesh/core/config/connection.py b/sqlmesh/core/config/connection.py index bf54f82760..343414eab2 100644 --- a/sqlmesh/core/config/connection.py +++ b/sqlmesh/core/config/connection.py @@ -2100,6 +2100,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 @@ -2136,6 +2137,7 @@ def _connection_kwargs_keys(self) -> t.Set[str]: "https_proxy", "server_host_name", "tls_mode", + "secure", } return kwargs