Skip to content

Commit

Permalink
add resource_type and tags to RelationConfig
Browse files Browse the repository at this point in the history
  • Loading branch information
colin-rogers-dbt committed Mar 2, 2024
1 parent 1a09566 commit 2d2c1c8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion dbt/adapters/contracts/relation.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,15 @@ def __delitem__(self, key):


class RelationConfig(Protocol):
resource_type: str
name: str
description: str
database: str
schema: str
identifier: str
compiled_code: Optional[str]
meta: Dict
meta: Dict[str, Any]
tags: List[str]
quoting_dict: Dict[str, bool]
config: Optional[MaterializationConfig]

Expand Down

0 comments on commit 2d2c1c8

Please sign in to comment.