DBT Test: Accepted Values Comtrade Exports Is Gross Weight Estimated False
DBT test name: accepted_values_comtrade_exports_is_gross_weight_estimated__False
DBT details
-
Kind:
generic(accepted_values) -
Column under test:
is_gross_weight_estimated -
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_c4c0c558792d1c60d508e18c7cbadb6f") }}
with all_values as (
select
is_gross_weight_estimated as value_field,
count(*) as n_records
from "trase_production"."main"."comtrade_exports"
group by is_gross_weight_estimated
)
select *
from all_values
where value_field not in (
'False'
)