change materialization of heavy tables
This commit is contained in:
parent
7488400cbb
commit
a1b67d20f1
5 changed files with 10 additions and 0 deletions
|
|
@ -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") }}),
|
||||||
|
|
|
||||||
|
|
@ -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") }}
|
||||||
|
|
|
||||||
|
|
@ -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 (
|
||||||
|
|
|
||||||
|
|
@ -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 %}
|
||||||
|
|
|
||||||
|
|
@ -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" %}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue