DBT Test: Accepted Values Brazil Bol 2023 Mdic Padded Exporter Type Cnpj Cpf Unknown
DBT test name: accepted_values_brazil_bol_2023_mdic_padded_exporter_type__cnpj__cpf__unknown
DBT details
-
Kind:
generic(accepted_values) -
Column under test:
exporter_type -
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_8329aa5ac0623c1b17db3ad32bd2f285") }}
with all_values as (
select
exporter_type as value_field,
count(*) as n_records
from "trase_production"."main_brazil"."brazil_bol_2023_mdic_padded"
group by exporter_type
)
select *
from all_values
where value_field not in (
'cnpj','cpf','unknown'
)