Skip to content

DBT Test: Relationships Brazil Bol 2025 Silver Port Of Import Country Name Country Name Ref Postgres Countries

DBT test name: relationships_brazil_bol_2025_silver_port_of_import_country_name__country_name__ref_postgres_countries_

DBT details


Description

No description


Details

Models

Macros

  • test_relationships
  • get_where_subquery
{{ test_relationships(**_dbt_generic_test_kwargs) }}{{ config(alias="relationships_brazil_bol_2025__257297cb1b8dcdf8f4c0c61178b3eb0a") }}
with child as (
    select port_of_import_country_name as from_field
    from "memory"."main"."brazil_bol_2025_silver"
    where port_of_import_country_name is not null
),

parent as (
    select country_name as to_field
    from "memory"."main"."postgres_countries"
)

select
    from_field

from child
left join parent
    on child.from_field = parent.to_field

where parent.to_field is null