Skip to content

Commit

Permalink
Adding more tblproperties to ignore list for streaming tables (#736)
Browse files Browse the repository at this point in the history
  • Loading branch information
benc-db authored Jul 17, 2024
1 parent ec63dce commit 19ed8dd
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
## dbt-databricks next
## dbt-databricks 1.8.4 (TBD)

### Fixes

- Fix `dbt seed` command failing for a seed file when the columns for that seed file were partially defined in the properties file. (thanks @kass-artur!) ([724](https://github.com/databricks/dbt-databricks/pull/724))
- Add more tblproperties to be ignored with MV/ST ([736](https://github.com/databricks/dbt-databricks/pull/736))

### Under the Hood

- Readd the External relation type for compliance with adapter expectations ([728](https://github.com/databricks/dbt-databricks/pull/728))

## dbt-databricks 1.8.3 (June 25, 2024)
Expand Down
10 changes: 10 additions & 0 deletions dbt/adapters/databricks/relation_configs/tblproperties.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,16 @@ class TblPropertiesConfig(DatabricksComponentConfig):
"pipelines.metastore.tableName",
"pipeline_internal.enzymeMode",
"clusteringColumns",
"delta.enableRowTracking",
"delta.feature.appendOnly",
"delta.feature.changeDataFeed",
"delta.feature.checkConstraints",
"delta.feature.domainMetadata",
"delta.feature.generatedColumns",
"delta.feature.invariants",
"delta.feature.rowTracking",
"delta.rowTracking.materializedRowCommitVersionColumnName",
"delta.rowTracking.materializedRowIdColumnName",
]

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

0 comments on commit 19ed8dd

Please sign in to comment.