Skip to content
This repository was archived by the owner on May 17, 2024. It is now read-only.

Commit d421923

Browse files
committed
Support connections to DuckDB for --dbt
1 parent 29bfa73 commit d421923

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

data_diff/dbt.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -333,6 +333,11 @@ def set_connection(self):
333333
"project": rendered_credentials.get("project"),
334334
"dataset": rendered_credentials.get("dataset"),
335335
}
336+
elif conn_type == "duckdb":
337+
conn_info = {
338+
"driver": conn_type,
339+
"filepath": rendered_credentials.get("path"),
340+
}
336341
else:
337342
raise NotImplementedError(f"Provider {conn_type} is not yet supported for dbt diffs")
338343

0 commit comments

Comments
 (0)