diff --git a/sqlmesh/core/config/connection.py b/sqlmesh/core/config/connection.py index d930537711..2a490818d9 100644 --- a/sqlmesh/core/config/connection.py +++ b/sqlmesh/core/config/connection.py @@ -2095,6 +2095,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 @@ -2131,6 +2132,7 @@ def _connection_kwargs_keys(self) -> t.Set[str]: "https_proxy", "server_host_name", "tls_mode", + "secure", } return kwargs