File tree Expand file tree Collapse file tree 4 files changed +4
-3
lines changed
tests/functional/adapter/materialized_view_tests Expand file tree Collapse file tree 4 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 1- ## dbt-databricks 1.9.1 (TBD )
1+ ## dbt-databricks 1.9.1 (December 16, 2024 )
22
33### Features
44
Original file line number Diff line number Diff line change 1- version = "1.9.0 "
1+ version = "1.9.1 "
Original file line number Diff line number Diff 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 :
Original file line number Diff line number Diff line change 1919
2020def _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
You can’t perform that action at this time.
0 commit comments