Skip to content

Commit a59f08d

Browse files
authored
Prep for 1.9.1 release (#879)
1 parent 5e20eea commit a59f08d

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## dbt-databricks 1.9.1 (TBD)
1+
## dbt-databricks 1.9.1 (December 16, 2024)
22

33
### Features
44

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version = "1.9.0"
1+
version = "1.9.1"

dbt/adapters/databricks/relation_configs/tblproperties.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ class TblPropertiesConfig(DatabricksComponentConfig):
3838
"delta.feature.rowTracking",
3939
"delta.rowTracking.materializedRowCommitVersionColumnName",
4040
"delta.rowTracking.materializedRowIdColumnName",
41+
"spark.internal.pipelines.top_level_entry.user_specified_name",
4142
]
4243

4344
def __eq__(self, __value: Any) -> bool:

tests/functional/adapter/materialized_view_tests/test_changes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
def _check_tblproperties(tblproperties: TblPropertiesConfig, expected: dict):
2121
final_tblproperties = {
22-
k: v for k, v in tblproperties.tblproperties.items() if not k.startswith("pipeline")
22+
k: v for k, v in tblproperties.tblproperties.items() if k not in tblproperties.ignore_list
2323
}
2424
assert final_tblproperties == expected
2525

0 commit comments

Comments
 (0)