Skip to content
Open
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
1 change: 1 addition & 0 deletions models/transformations/fct_reorg_daily.sql
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ WITH
FROM `{{ .self.database }}`.`{{ .self.table }}` AS e FINAL
INNER JOIN target_days d
ON e.day_start_date = d.day_start_date
WHERE e.reorg_count > 0
),
depth_dim AS (
SELECT depth FROM existing_depths
Expand Down
1 change: 1 addition & 0 deletions models/transformations/fct_reorg_hourly.sql
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ WITH
FROM `{{ .self.database }}`.`{{ .self.table }}` AS e FINAL
INNER JOIN target_hours h
ON e.hour_start_date_time = h.hour_start_date_time
WHERE e.reorg_count > 0
),
depth_dim AS (
SELECT depth FROM existing_depths
Expand Down
Loading