Skip to content

Commit

Permalink
Make get_catalog_for_single_relation a concrete method in `BaseAdap…
Browse files Browse the repository at this point in the history
…ter` (#240)
  • Loading branch information
aranke authored Jun 19, 2024
1 parent 9153819 commit 46e470c
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion dbt/adapters/base/impl.py
Original file line number Diff line number Diff line change
Expand Up @@ -629,7 +629,6 @@ def get_columns_in_relation(self, relation: BaseRelation) -> List[BaseColumn]:
"""Get a list of the columns in the given Relation."""
raise NotImplementedError("`get_columns_in_relation` is not implemented for this adapter!")

@abc.abstractmethod
def get_catalog_for_single_relation(self, relation: BaseRelation) -> Optional[CatalogTable]:
"""Get catalog information including table-level and column-level metadata for a single relation."""
raise NotImplementedError(
Expand Down

0 comments on commit 46e470c

Please sign in to comment.