DBT Test: Relationships Brazil Bol 2023 Gold Port Of Import Name Name Ref Postgres Ports
DBT test name: relationships_brazil_bol_2023_gold_port_of_import_name__name__ref_postgres_ports_
DBT details
-
Kind:
generic(relationships) -
Column under test:
port_of_import_name -
Test file: trase/data_pipeline/models/brazil/trade/bol/_schema_brazil_bol.yml
Description
No description
Details
{{ test_relationships(**_dbt_generic_test_kwargs) }}{{ config(severity="warn",alias="relationships_brazil_bol_2023__ca1d1fb1c2b55bf120498577ebb837f1") }}
with child as (
select port_of_import_name as from_field
from "trase_production"."main_brazil"."brazil_bol_2023_gold"
where port_of_import_name is not null
),
parent as (
select name as to_field
from "trase_production"."main"."postgres_ports"
)
select
from_field
from child
left join parent
on child.from_field = parent.to_field
where parent.to_field is null