Skip to content

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

DBT test name: relationships_wood_pulp_ind_v3_2_0_2025_post_embedding_quant_COUNTRY_OF_PRODUCTION__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_10686c66bba503dcb9f554a5d76fb7ac") }}
with child as (
    select COUNTRY_OF_PRODUCTION as from_field
    from "trase_production"."main"."wood_pulp_ind_v3_2_0_2025_post_embedding_quant"
    where COUNTRY_OF_PRODUCTION 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