Skip to content

Commit 40925aa

Browse files
authored
dbt codegen only manually handles limited sets of Databricks types (#875)
1 parent 32ec1b1 commit 40925aa

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
### Under the Hood
44

55
- Removed pins for pandas and pydantic to ease user burdens ([874](https://github.com/databricks/dbt-databricks/pull/874))
6+
- Add more relation types to make codegen happy ([875](https://github.com/databricks/dbt-databricks/pull/875))
67

78
## dbt-databricks 1.9.0 (December 9, 2024)
89

dbt/adapters/databricks/relation.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@ class DatabricksRelationType(StrEnum):
3939
Foreign = "foreign"
4040
StreamingTable = "streaming_table"
4141
External = "external"
42+
ManagedShallowClone = "managed_shallow_clone"
43+
ExternalShallowClone = "external_shallow_clone"
4244
Unknown = "unknown"
4345

4446

0 commit comments

Comments
 (0)