Skip to content

Commit 5f7de22

Browse files
committed
forgot dbt refs
1 parent 49a13c1 commit 5f7de22

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/comparisons.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,8 @@ Since there is no state in dbt, users must write and maintain subqueries to find
7575
```sql
7676
-- dbt incremental
7777
SELECT *
78-
FROM raw.events e
79-
JOIN raw.event_dims d
78+
FROM {{ ref(raw.events) }} e
79+
JOIN {{ ref(raw.event_dims) }} d
8080
ON e.id = d.id
8181
-- must specify the is_incremental flag because this predicate will fail if the model has never run before
8282
{% if is_incremental() %}

0 commit comments

Comments
 (0)