Skip to content

Commit

Permalink
update RelationConfig imports and add changie
Browse files Browse the repository at this point in the history
  • Loading branch information
colin-rogers-dbt committed Feb 12, 2024
1 parent a5f63c8 commit 0cb3571
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
6 changes: 6 additions & 0 deletions .changes/unreleased/Features-20240212-123544.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
kind: Features
body: Update RelationConfig to capture all fields used by adapters
time: 2024-02-12T12:35:44.653555-08:00
custom:
Author: colin-rogers-dbt
Issue: "30"
5 changes: 3 additions & 2 deletions dbt/adapters/contracts/relation.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@

from collections.abc import Mapping
from dataclasses import dataclass
from dbt_common.contracts.config.materialization import OnConfigurationChangeOption
from typing import Dict, Optional, Any, Union, List


from dbt_common.contracts.config.materialization import OnConfigurationChangeOption
from dbt_common.contracts.util import Replaceable
from dbt_common.dataclass_schema import StrEnum, dbtClassMixin
from dbt_common.exceptions import CompilationError, DataclassNotDictError
from dbt_common.utils import deep_merge
from typing_extensions import Protocol, TypedDict
from typing_extensions import Protocol


class RelationType(StrEnum):
Expand Down

0 comments on commit 0cb3571

Please sign in to comment.