Skip to content

Commit 1a8ed91

Browse files
committed
fixing the row_number=1 limitation, not sure how I dropped that
1 parent 0ccbc19 commit 1a8ed91

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

dbt/data/_seed_files.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ seeds:
112112
- name: seed_country_iso_metadata
113113
description: country-level categorizations and metadata provided by the global team, used primarily for creating regional groupings and segmentations
114114

115-
- name: seed_cs_state_grad_requirements
115+
- name: seed_cs_state_grad_requirement
116116
description: states that have passed CS grad requirements, current as of October 2024
117117

118118
- name: seed_csf_plugged_stage_counts

dbt/models/staging/dashboard/stg_dashboard__user_geos.sql

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ final as (
3131
updated_at,
3232
indexed_at
3333
from user_geos
34+
where row_number = 1
3435
)
3536

3637
select *
37-
from final
38+
from final

0 commit comments

Comments
 (0)