Skip to content

DBT Test: Accepted Values Brazil Bol 2023 Gold Country Of Destination Economic Bloc European Union

DBT test name: accepted_values_brazil_bol_2023_gold_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_7067ff66d2283019ecd8a96622e9e327") }}
with all_values as (

    select
        country_of_destination_economic_bloc as value_field,
        count(*) as n_records

    from "trase_production"."main_brazil"."brazil_bol_2023_gold"
    group by country_of_destination_economic_bloc

)

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