DBT Test: Relationships Brazil Bol 2023 Mdic Padded Hs4 Code Ref Hs2017
DBT test name: relationships_brazil_bol_2023_mdic_padded_hs4__code__ref_hs2017_
DBT details
-
Kind:
generic(relationships) -
Column under test:
hs4 -
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__caee8b3c5f320a4fc037c86a19f10660") }}
with child as (
select hs4 as from_field
from "trase_production"."main_brazil"."brazil_bol_2023_mdic_padded"
where hs4 is not null
),
parent as (
select code as to_field
from "trase_production"."main"."hs2017"
)
select
from_field
from child
left join parent
on child.from_field = parent.to_field
where parent.to_field is null