Skip to content

Commit

Permalink
Fixed issue
Browse files Browse the repository at this point in the history
  • Loading branch information
rahulgoyal2987 committed Dec 9, 2024
1 parent 0060275 commit 7046a13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dbt/adapters/spark/impl.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ def set_relation_information(self, relation: BaseRelation):
rows: List[agate.Row] = super().get_columns_in_relation(relation)
information = ""
for info_row in rows:
info_type, info_value = info_row.values()
info_type, info_value, _ = info_row.values()
if not info_type.startswith("#"):
information += f"{info_type}: {info_value}\n"
rel_type: RelationType = (
Expand Down

0 comments on commit 7046a13

Please sign in to comment.