Skip to content

DBT Test: Relationships Brazil Bol 2023 Mdic Padded Importer Name Name Ref Postgres Traders

DBT test name: relationships_brazil_bol_2023_mdic_padded_importer_name__name__ref_postgres_traders_

DBT details


Description

No description


Details

Models

Macros

  • test_relationships
  • get_where_subquery
{{ test_relationships(**_dbt_generic_test_kwargs) }}{{ config(alias="relationships_brazil_bol_2023__d20b337053b41b709328a1832eb5a464") }}
with child as (
    select importer_name as from_field
    from "trase_production"."main_brazil"."brazil_bol_2023_mdic_padded"
    where importer_name is not null
),

parent as (
    select name as to_field
    from "trase_production"."main"."postgres_traders"
)

select
    from_field

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

where parent.to_field is null