From c08af1371e77cf373ef9dedad37839f428d5672b Mon Sep 17 00:00:00 2001 From: colin-rogers-dbt <111200756+colin-rogers-dbt@users.noreply.github.com> Date: Mon, 18 Dec 2023 10:41:21 -0800 Subject: [PATCH] Add config field to RelationConfig (#9300) * moving types_pb2.py to common/events * add config field to RelationConfig --- core/dbt/adapters/contracts/relation.py | 1 + 1 file changed, 1 insertion(+) diff --git a/core/dbt/adapters/contracts/relation.py b/core/dbt/adapters/contracts/relation.py index 98e9d8ef878..aea294e922c 100644 --- a/core/dbt/adapters/contracts/relation.py +++ b/core/dbt/adapters/contracts/relation.py @@ -28,6 +28,7 @@ class RelationConfig(Protocol): schema: str identifier: str quoting_dict: Dict[str, bool] + config: Dict[str, str] class ComponentName(StrEnum):