Addressed comments

This commit is contained in:
Joaquin Ossa 2025-01-30 16:30:03 +01:00
parent bb9dea8ed6
commit 40c8e20e70
2 changed files with 7 additions and 12 deletions

View file

@ -1,9 +1,9 @@
with
int_monthly_aggregated_metrics_history_by_deal as (
select
*,
(date_trunc('month', date) + interval '2 month' - interval '1 day')::date
as next_month_end_date
as next_month_end_date,
*
from {{ ref("int_monthly_aggregated_metrics_history_by_deal") }}
),
int_kpis__dimension_deals as (select * from {{ ref("int_kpis__dimension_deals") }}),