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
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