diff --git a/sqlmesh/core/config/connection.py b/sqlmesh/core/config/connection.py index 2c897cd8a5..cebdb2128b 100644 --- a/sqlmesh/core/config/connection.py +++ b/sqlmesh/core/config/connection.py @@ -232,7 +232,7 @@ def to_sql(self, alias: str) -> str: options = [] # 'duckdb' is actually not a supported type, but we'd like to allow it for # fully qualified attach options or integration testing, similar to duckdb-dbt - if self.type not in ("duckdb", "motherduck"): + if self.type not in ("duckdb", "ducklake", "motherduck"): options.append(f"TYPE {self.type.upper()}") if self.read_only: options.append("READ_ONLY")