From 7ba65999c3ee69078905e5bf9dc46782133bf5ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oriol=20Roqu=C3=A9=20Paniagua?= Date: Thu, 29 Aug 2024 14:25:18 +0000 Subject: [PATCH] Merged PR 2687: Materialize int_core__verification_payments as a table # Description Just materializes `int_core__verification_payments` as a table instead as a view to enhance compute. # Checklist - [X] The edited models and dependants run properly with production data. - [X] The edited models are sufficiently documented. - [X] The edited models contain PK tests, and I've ran and passed them. **Technically I get errors in local but from what I see it's because I have different dumps for the currency conversion and the other sources. There's no such cases in prod from what I observed.** - [X] I have checked for DRY opportunities with other models and docs. - [X] I've picked the right materialization for the affected models. # Other - [ ] Check if a full-refresh is required after this PR is merged. Related work items: #19082 --- models/intermediate/core/int_core__verification_payments.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/models/intermediate/core/int_core__verification_payments.sql b/models/intermediate/core/int_core__verification_payments.sql index 0253066..504d951 100644 --- a/models/intermediate/core/int_core__verification_payments.sql +++ b/models/intermediate/core/int_core__verification_payments.sql @@ -1,3 +1,4 @@ +{{ config(materialized="table") }} with stg_core__verification_to_payment as ( select * from {{ ref("stg_core__verification_to_payment") }}