DBT Test: Accepted Values Comtrade Exports Classification Code H3 H4 H5 H6
DBT test name: accepted_values_comtrade_exports_classification_code__H3__H4__H5__H6
DBT details
-
Kind:
generic(accepted_values) -
Column under test:
classification_code -
Test file: trase/data_pipeline/models/world/trade/statistical_data/comtrade/originals/_schema.yml
Description
No description
Details
{{ test_accepted_values(**_dbt_generic_test_kwargs) }}{{ config(alias="accepted_values_comtrade_expor_0351c1a0d6a76316f1849926bfdce045") }}
with all_values as (
select
classification_code as value_field,
count(*) as n_records
from "trase_production"."main"."comtrade_exports"
group by classification_code
)
select *
from all_values
where value_field not in (
'H3','H4','H5','H6'
)