Skip to content

Commit

Permalink
fix(reports): changes report evaluations for MTC from regional to sub…
Browse files Browse the repository at this point in the history
…-feed instead
  • Loading branch information
V committed Oct 2, 2024
1 parent 968dcfa commit f246600
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@
WITH int_gtfs_quality__guideline_checks_long AS (
SELECT *
FROM {{ ref('int_gtfs_quality__guideline_checks_long') }}
WHERE organization_key IS NOT NULL AND public_customer_facing_fixed_route
WHERE organization_key IS NOT NULL
AND (
(use_subfeed_for_reports AND public_customer_facing_or_regional_subfeed_fixed_route)
OR
(NOT use_subfeed_for_reports AND public_customer_facing_fixed_route)
)
),

fct_daily_organization_combined_guideline_checks AS (
Expand Down

0 comments on commit f246600

Please sign in to comment.