Skip to content

DBT Test: Accepted Values Seipcs Indonesia Palm Oil 2022 Km 0 Mgd 30 Patched Commodity Cpo Rpo

DBT test name: accepted_values_seipcs_indonesia_palm_oil_2022_km_0_mgd_30_patched_commodity__CPO__RPO

DBT details


Description

No description


Details

Models

Macros

  • test_accepted_values
  • get_where_subquery
{{ test_accepted_values(**_dbt_generic_test_kwargs) }}{{ config(alias="accepted_values_seipcs_indones_036de0a6f88e576f4b26cfc642413197") }}
with all_values as (

    select
        commodity as value_field,
        count(*) as n_records

    from "trase_production"."main_indonesia_palm"."seipcs_indonesia_palm_oil_2022_km_0_mgd_30_patched"
    group by commodity

)

select *
from all_values
where value_field not in (
    'CPO','RPO'
)