Skip to content

DBT Test: Accepted Values Wood Pulp Ind V3 2 0 2025 Post Embedding Quant Importer Processed Domestically

DBT test name: accepted_values_wood_pulp_ind_v3_2_0_2025_post_embedding_quant_IMPORTER__PROCESSED_DOMESTICALLY

DBT details


Description

No description


Details

Models

Macros

  • test_accepted_values
  • get_where_subquery
{{ test_accepted_values(**_dbt_generic_test_kwargs) }}{{ config(where="destination = 'INDONESIA'",alias="accepted_values_wood_pulp_ind__6dbb280f93078d207a78a75499f8d64e") }}
with all_values as (

    select
        IMPORTER as value_field,
        count(*) as n_records

    from (select * from "trase_production"."main"."wood_pulp_ind_v3_2_0_2025_post_embedding_quant" where destination = 'INDONESIA') dbt_subquery
    group by IMPORTER

)

select *
from all_values
where value_field not in (
    'PROCESSED DOMESTICALLY'
)