Skip to content

DBT Test: Relationships Wood Pulp Ind V3 2 0 2025 Post Embedding Quant Destination Country Name Ref Postgres Countries

DBT test name: relationships_wood_pulp_ind_v3_2_0_2025_post_embedding_quant_DESTINATION__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_wood_pulp_ind_v3_1accbad9aa96c5e0d2b961c65341d97a") }}
with child as (
    select DESTINATION as from_field
    from "trase_production"."main"."wood_pulp_ind_v3_2_0_2025_post_embedding_quant"
    where DESTINATION is not null
),

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

select
    from_field

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

where parent.to_field is null