We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d9828b commit 6ed8a15Copy full SHA for 6ed8a15
sandbox/profiles.yml
@@ -4,6 +4,11 @@ jaffle_shop:
4
dev:
5
type: duckdb
6
path: "sandbox/jaffle_shop.duckdb"
7
+ schema: dev_schema
8
+ prod:
9
+ type: duckdb
10
+ path: "sandbox/jaffle_shop.duckdb"
11
+ schema: prod_schema
12
test:
13
14
path: "jaffle_shop.duckdb"
src/dbt_core_interface/project.py
@@ -142,6 +142,8 @@ class DbtConfiguration:
142
use_experimental_parser: bool = True
143
static_parser: bool = True
144
partial_parse: bool = True
145
+ defer: bool = True
146
+ favor_state: bool = False
147
148
dependencies: list[str] = field(default_factory=list)
149
which: str = "zezima was here"
0 commit comments