Skip to content

Commit

Permalink
fix failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
benc-db committed Oct 11, 2024
1 parent 0a24f72 commit c935ce7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dbt/adapters/databricks/impl.py
Original file line number Diff line number Diff line change
Expand Up @@ -681,8 +681,8 @@ def get_persist_doc_columns(
name = column.column
if (
name in columns
and "description" in columns[name]
and columns[name]["description"] != (column.comment or "")
and columns[name].description
and columns[name].description != (column.comment or "")
):
return_columns[name] = columns[name]

Expand Down

0 comments on commit c935ce7

Please sign in to comment.