Skip to content

Commit

Permalink
updated model name to locations_cleaned
Browse files Browse the repository at this point in the history
  • Loading branch information
izzye84 committed Nov 30, 2023
1 parent 6249b68 commit 1c61fce
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dbt_project/models/ANALYTICS/orders_augmented.sql
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ from {{ ref("orders_cleaned") }} o
left join {{ ref("users_cleaned") }} u
on o.user_id = u.user_id

left join {{ ref("location_cleaned") }} l
left join {{ ref("locations_cleaned") }} l
on o.user_id = l.user_id

{% if is_incremental() %}
Expand Down
2 changes: 1 addition & 1 deletion hooli_data_eng/assets/dbt_assets.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,6 @@ def weekly_dbt_assets(context: OpExecutionContext, dbt2: DbtCliResource):
dbt_views = load_assets_from_dbt_project(
DBT_PROJECT_DIR,
DBT_PROFILES_DIR,
select="company_perf sku_stats company_stats",
select="company_perf sku_stats company_stats locations_cleaned",
dagster_dbt_translator=CustomDagsterDbtTranslatorForViews()
)

0 comments on commit 1c61fce

Please sign in to comment.