change materialization of heavy tables

This commit is contained in:
Pablo Martin 2025-07-09 11:33:54 +02:00
parent 7488400cbb
commit a1b67d20f1
5 changed files with 10 additions and 0 deletions

View file

@ -1,3 +1,5 @@
{{ config(materialized="table") }}
{% set ok_status = "Approved" %} {% set ok_status = "Approved" %}
with with
int_athena__verifications as (select * from {{ ref("int_athena__verifications") }}), int_athena__verifications as (select * from {{ ref("int_athena__verifications") }}),

View file

@ -1,3 +1,5 @@
{{ config(materialized="table") }}
with with
stg_check_in_hero__checkins as ( stg_check_in_hero__checkins as (
select * from {{ ref("stg_check_in_hero__checkins") }} select * from {{ ref("stg_check_in_hero__checkins") }}

View file

@ -1,3 +1,5 @@
{{ config(materialized="table") }}
{% set guesty_id_deal = "17814677813" %} {% set guesty_id_deal = "17814677813" %}
with with
int_edeposit__verification_fees as ( int_edeposit__verification_fees as (

View file

@ -1,3 +1,5 @@
{{ config(materialized="table") }}
{% set ok_status = ("Approved", "Flagged") %} {% set ok_status = ("Approved", "Flagged") %}
{% set rejected_status = "Rejected" %} {% set rejected_status = "Rejected" %}
{% set rejected_fee = 0.25 %} {% set rejected_fee = 0.25 %}

View file

@ -1,3 +1,5 @@
{{ config(materialized="table") }}
{% set rejected_status = "REJECTED" %} {% set rejected_status = "REJECTED" %}
{% set approved_flagged_status = ("APPROVED", "FLAGGED") %} {% set approved_flagged_status = ("APPROVED", "FLAGGED") %}
{% set basic_protection = "BASIC PROTECTION" %} {% set basic_protection = "BASIC PROTECTION" %}