Skip to content

Commit

Permalink
Fixed defect
Browse files Browse the repository at this point in the history
  • Loading branch information
rahulgoyal2987 committed Dec 9, 2024
1 parent f5bd5ba commit 0060275
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 @@ -212,7 +212,7 @@ def list_relations_without_caching(self, schema_relation: BaseRelation) -> List[
def set_relation_information(self, relation: BaseRelation):
if relation.information:
return relation
rows: List[agate.Row] = super().get_columns_in_relations(relation)
rows: List[agate.Row] = super().get_columns_in_relation(relation)
information = ""
for info_row in rows:
info_type, info_value = info_row.values()
Expand Down

0 comments on commit 0060275

Please sign in to comment.