Skip to content

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


Description

No description


Details

Models

Macros

  • test_accepted_values
  • get_where_subquery
{{ 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'
)