More thingies

This commit is contained in:
Pablo Martin 2023-10-30 18:59:39 +01:00
parent 3e8423dbd8
commit f85adbde93
3 changed files with 14 additions and 0 deletions

View file

@ -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

View file

@ -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') }}

View file

@ -1,3 +1,9 @@
{{
config(
materialized = 'view'
)
}}
WITH src_listings AS ( WITH src_listings AS (
SELECT * SELECT *
FROM FROM