DBT Test: Accepted Values Brazil Bol 2023 Silver Exporter Country Label Brazil
DBT test name: accepted_values_brazil_bol_2023_silver_exporter_country_label__BRAZIL
DBT details
-
Kind:
generic(accepted_values) -
Column under test:
exporter_country_label -
Test file: trase/data_pipeline/models/brazil/trade/bol/_schema_brazil_bol.yml
Description
No description
Details
{{ test_accepted_values(**_dbt_generic_test_kwargs) }}{{ config(alias="accepted_values_brazil_bol_202_dcc82469902520864ab40894d09ba8fb") }}
with all_values as (
select
exporter_country_label as value_field,
count(*) as n_records
from "trase_production"."main_brazil"."brazil_bol_2023_silver"
group by exporter_country_label
)
select *
from all_values
where value_field not in (
'BRAZIL'
)