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