We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b66046 commit 317df56Copy full SHA for 317df56
sqlmesh/core/config/connection.py
@@ -232,7 +232,7 @@ def to_sql(self, alias: str) -> str:
232
options = []
233
# 'duckdb' is actually not a supported type, but we'd like to allow it for
234
# fully qualified attach options or integration testing, similar to duckdb-dbt
235
- if self.type not in ("duckdb", "motherduck"):
+ if self.type not in ("duckdb", "ducklake", "motherduck"):
236
options.append(f"TYPE {self.type.upper()}")
237
if self.read_only:
238
options.append("READ_ONLY")
0 commit comments