DBT Test: Relationships Brazil Bol 2023 Mdic Padded Commodity Commodity Ref Postgres Commodities
DBT test name: relationships_brazil_bol_2023_mdic_padded_commodity__commodity__ref_postgres_commodities_
DBT details
-
Kind:
generic(relationships) -
Column under test:
commodity -
Test file: trase/data_pipeline/models/brazil/trade/bol/_schema_brazil_bol.yml
Description
No description
Details
Models
Macros
test_relationshipsget_where_subquery
{{ test_relationships(**_dbt_generic_test_kwargs) }}{{ config(alias="relationships_brazil_bol_2023__2000b9e61680991fa6d2087294b6d857") }}
with child as (
select commodity as from_field
from "trase_production"."main_brazil"."brazil_bol_2023_mdic_padded"
where commodity is not null
),
parent as (
select commodity as to_field
from "trase_production"."main"."postgres_commodities"
)
select
from_field
from child
left join parent
on child.from_field = parent.to_field
where parent.to_field is null