Skip to content

Commit 7402a8f

Browse files
authored
Merge pull request #22 from edmondop/docs-improvements
Clarified debugging section of tutorial
2 parents 119e805 + 2747a02 commit 7402a8f

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

docs/tutorials/debugging.mdx

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,8 @@ moms_flower_shop.analytics.dim_marketing_campaigns.total_num_installs
8080
GROUP BY 1
8181
```
8282

83-
There is not much going on here. We need to keep moving up.
83+
There is not much going on here. We need to keep moving up (note that
84+
the lineage command displays upstream dependencies below the current model).
8485

8586
In the upstream model `app_installs` defined in `models/staging/app_installs.sql`,
8687
let's zoom in on the `FROM` statement:
@@ -191,7 +192,9 @@ moms_flower_shop.staging.stg_installs_per_campaign.total_num_installs
191192
</pre>
192193
</div>
193194

194-
Only our new model will be impacted.
195+
Only our new model will be impacted:
196+
- the `campaign_id` columns has no forward dependencies
197+
- the `total_num_installs` column is used only by `dim_marketing_campaigns`
195198
</Step>
196199
<Step title="Fix it!">
197200
To materialize the fix, all we need to do is run the queries:

0 commit comments

Comments
 (0)