Skip to content

Commit 6ed8a15

Browse files
committed
chore: validate deferral
1 parent 5d9828b commit 6ed8a15

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

sandbox/profiles.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ jaffle_shop:
44
dev:
55
type: duckdb
66
path: "sandbox/jaffle_shop.duckdb"
7+
schema: dev_schema
8+
prod:
9+
type: duckdb
10+
path: "sandbox/jaffle_shop.duckdb"
11+
schema: prod_schema
712
test:
813
type: duckdb
914
path: "jaffle_shop.duckdb"

src/dbt_core_interface/project.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,8 @@ class DbtConfiguration:
142142
use_experimental_parser: bool = True
143143
static_parser: bool = True
144144
partial_parse: bool = True
145+
defer: bool = True
146+
favor_state: bool = False
145147

146148
dependencies: list[str] = field(default_factory=list)
147149
which: str = "zezima was here"

0 commit comments

Comments
 (0)