DBT Test: Relationships Brazil Bol 2023 Mdic Padded Country Of Destination Trase Id Country Trase Id Ref Postgres Countries
DBT test name: relationships_brazil_bol_2023_mdic_padded_country_of_destination_trase_id__country_trase_id__ref_postgres_countries_
DBT details
-
Kind:
generic(relationships) -
Column under test:
country_of_destination_trase_id -
Test file: trase/data_pipeline/models/brazil/trade/bol/_schema_brazil_bol.yml
Description
No description
Details
{{ test_relationships(**_dbt_generic_test_kwargs) }}{{ config(alias="relationships_brazil_bol_2023__812e8dbc86b4400beb0ead2dc0ca70e4") }}
with child as (
select country_of_destination_trase_id as from_field
from "trase_production"."main_brazil"."brazil_bol_2023_mdic_padded"
where country_of_destination_trase_id is not null
),
parent as (
select country_trase_id as to_field
from "trase_production"."main"."postgres_countries"
)
select
from_field
from child
left join parent
on child.from_field = parent.to_field
where parent.to_field is null