Skip to content
Draft
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
Expand Up @@ -44,7 +44,7 @@ joined as (
stu_races.race_array,
stu_races.has_hispanic_latino_ethnicity
from stg_student
join stu_demos
{% if not var('edu:stu_demos:require_strict', True) %}left {% endif %}join stu_demos
on stg_student.k_student = stu_demos.k_student
left join stu_races
on stu_demos.k_student = stu_races.k_student
Expand Down
2 changes: 1 addition & 1 deletion models/core_warehouse/dim_student.sql
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ formatted as (

from stg_student

join stu_demos
{% if not var('edu:stu_demos:require_strict', True) %}left {% endif %}join stu_demos
on stg_student.k_student = stu_demos.k_student
join stu_immutable_demos
on stu_demos.{{demos_join_var}} = stu_immutable_demos.{{demos_join_var}}
Expand Down