Skip to content

Commit

Permalink
Revert "Remove Undocumented Property" (#10544)
Browse files Browse the repository at this point in the history
* Revert "Remove undocumented property which does not pass mypy checks after an…"

This reverts commit 21a4633.

* add code comment
  • Loading branch information
colin-rogers-dbt authored Aug 8, 2024
1 parent 7f57dd5 commit dfa7d06
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion core/dbt/context/providers.py
Original file line number Diff line number Diff line change
Expand Up @@ -974,7 +974,8 @@ def load_agate_table(self) -> "agate.Table":
table = agate_helper.from_csv(path, text_columns=column_types, delimiter=delimiter)
except ValueError as e:
raise LoadAgateTableValueError(e, node=self.model)

# this is used by some adapters
table.original_abspath = os.path.abspath(path)
return table

@contextproperty()
Expand Down

0 comments on commit dfa7d06

Please sign in to comment.