DBT Test: Accepted Values Comtrade Exports Flow Code X
DBT test name: accepted_values_comtrade_exports_flow_code__X
DBT details
-
Kind:
generic(accepted_values) -
Column under test:
flow_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) }}
with all_values as (
select
flow_code as value_field,
count(*) as n_records
from "trase_production"."main"."comtrade_exports"
group by flow_code
)
select *
from all_values
where value_field not in (
'X'
)