Skip to content

DBT Test: Accepted Values Brazil Bol 2025 Silver Country Of Destination Economic Bloc European Union

DBT test name: accepted_values_brazil_bol_2025_silver_country_of_destination_economic_bloc__EUROPEAN_UNION

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_b609686d2b2771e7cfc87e3ec8bfb1ee") }}
with all_values as (

    select
        country_of_destination_economic_bloc as value_field,
        count(*) as n_records

    from "memory"."main"."brazil_bol_2025_silver"
    group by country_of_destination_economic_bloc

)

select *
from all_values
where value_field not in (
    'EUROPEAN UNION'
)