Financial rate metrics

This commit is contained in:
Joaquin Ossa 2024-09-20 14:53:43 +02:00
parent ea430b1f23
commit 5ac1a65e90
5 changed files with 26 additions and 17 deletions

View file

@ -3,7 +3,7 @@
with
dimensions as (
{% for dimension in production_dimensions %}
select
select
{{ dimension.dimension }} as dimension,
{{ dimension.dimension_display }} as dimension_display
{% if not loop.last %}
@ -12,15 +12,12 @@ with
{% endfor %}
),
int_mtd_aggregated_metrics as (
select
m.*,
d.dimension_display
select m.*, d.dimension_display
from {{ ref("int_mtd_aggregated_metrics") }} m
-- The following clause limits the display execution
-- to only include those dimensions configured to
-- appear for production purposes
inner join dimensions d
on m.dimension = d.dimension
inner join dimensions d on m.dimension = d.dimension
)
select