DBT Test: Accepted Values Wood Pulp Ind V3 2 0 2025 Post Embedding Quant Importer Group Processed Domestically
DBT test name: accepted_values_wood_pulp_ind_v3_2_0_2025_post_embedding_quant_IMPORTER_GROUP__PROCESSED_DOMESTICALLY
DBT details
-
Kind:
generic(accepted_values) -
Column under test:
IMPORTER_GROUP -
Test file: trase/data_pipeline/models/indonesia/wood_pulp/sei_pcs/_schema.yml
Description
No description
Details
Models
Macros
test_accepted_valuesget_where_subquery
{{ test_accepted_values(**_dbt_generic_test_kwargs) }}{{ config(where="destination = 'INDONESIA'",alias="accepted_values_wood_pulp_ind__d49b183831bc6bda12cfdb16b8655bbf") }}
with all_values as (
select
IMPORTER_GROUP 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_GROUP
)
select *
from all_values
where value_field not in (
'PROCESSED DOMESTICALLY'
)