Skip to content

Commit

Permalink
Changed target.name to target.type for sqlserver persist_docs columns
Browse files Browse the repository at this point in the history
  • Loading branch information
bvkabn committed Sep 19, 2024
1 parent 479ba59 commit 1f8100e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions dbt_project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,8 @@ models:
+file_format: delta
sources:
+materialized: incremental
+on_schema_change: append_new_columns
+full_refresh: false
+persist_docs:
# Databricks and SQL Server don't offer column-level support for persisting docs
columns: '{{ target.name != "databricks" and target.name != "sqlserver" }}'
columns: '{{ target.name != "databricks" and target.type != "sqlserver" }}'
+as_columnstore: False

0 comments on commit 1f8100e

Please sign in to comment.