More thingies
This commit is contained in:
parent
3e8423dbd8
commit
f85adbde93
3 changed files with 14 additions and 0 deletions
|
|
@ -30,5 +30,7 @@ clean-targets: # directories to be removed by `dbt clean`
|
||||||
models:
|
models:
|
||||||
dbtlearn:
|
dbtlearn:
|
||||||
+materialized: view # Default way to materialize is view
|
+materialized: view # Default way to materialize is view
|
||||||
|
src:
|
||||||
|
+materialized: ephemeral
|
||||||
dim:
|
dim:
|
||||||
+materialized: table
|
+materialized: table
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,9 @@
|
||||||
|
{{
|
||||||
|
config(
|
||||||
|
materialized = 'view'
|
||||||
|
)
|
||||||
|
}}
|
||||||
|
|
||||||
WITH src_hosts AS(
|
WITH src_hosts AS(
|
||||||
SELECT *
|
SELECT *
|
||||||
FROM {{ ref('src_hosts') }}
|
FROM {{ ref('src_hosts') }}
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,9 @@
|
||||||
|
{{
|
||||||
|
config(
|
||||||
|
materialized = 'view'
|
||||||
|
)
|
||||||
|
}}
|
||||||
|
|
||||||
WITH src_listings AS (
|
WITH src_listings AS (
|
||||||
SELECT *
|
SELECT *
|
||||||
FROM
|
FROM
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue