Skip to content

Commit

Permalink
Prep for 1.9.1 release (#879)
Browse files Browse the repository at this point in the history
  • Loading branch information
benc-db authored Dec 16, 2024
1 parent 5e20eea commit a59f08d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## dbt-databricks 1.9.1 (TBD)
## dbt-databricks 1.9.1 (December 16, 2024)

### Features

Expand Down
2 changes: 1 addition & 1 deletion dbt/adapters/databricks/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = "1.9.0"
version = "1.9.1"
1 change: 1 addition & 0 deletions dbt/adapters/databricks/relation_configs/tblproperties.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ class TblPropertiesConfig(DatabricksComponentConfig):
"delta.feature.rowTracking",
"delta.rowTracking.materializedRowCommitVersionColumnName",
"delta.rowTracking.materializedRowIdColumnName",
"spark.internal.pipelines.top_level_entry.user_specified_name",
]

def __eq__(self, __value: Any) -> bool:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

def _check_tblproperties(tblproperties: TblPropertiesConfig, expected: dict):
final_tblproperties = {
k: v for k, v in tblproperties.tblproperties.items() if not k.startswith("pipeline")
k: v for k, v in tblproperties.tblproperties.items() if k not in tblproperties.ignore_list
}
assert final_tblproperties == expected

Expand Down

0 comments on commit a59f08d

Please sign in to comment.