Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{{ config(materialized='ephemeral') }}

-- An ephemeral model: inlined as a CTE into downstream models and never written to the warehouse.
select * from {{ ref('customers') }}
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
-- Downstream of the ephemeral model. dbt inlines ephemeral_customers as a CTE here, so the
-- customers -> ephemeral_customers -> ephemeral_customers_downstream lineage flows through the
-- ephemeral node even though it is never materialized in the warehouse.
select * from {{ ref('ephemeral_customers') }}
Loading
Loading