Closed rossbowen closed 1 month ago
Whenever I specify a schema, e.g. raw, the data gets placed in a schema prefixed with main_, e.g. main_raw.
raw
main_
main_raw
Take jaffle_shop_duckdb, if I specify a schema for my seeds to be placed into:
jaffle_shop_duckdb
seeds: +docs: node_color: '#cd7f32' +schema: seeds
I'd expect data to land in seeds.raw_customers but instead it lands in main_seeds.raw_customers.
seeds.raw_customers
main_seeds.raw_customers
yah this is a standard dbt thing https://docs.getdbt.com/docs/build/custom-schemas
Whenever I specify a schema, e.g.
raw
, the data gets placed in a schema prefixed withmain_
, e.g.main_raw
.Take
jaffle_shop_duckdb
, if I specify a schema for my seeds to be placed into:I'd expect data to land in
seeds.raw_customers
but instead it lands inmain_seeds.raw_customers
.