DBT Test: Dbt Utils Not Null Proportion Brazil Bol 2023 Mdic Padded 0 99 Exporter Trase Id
DBT test name: dbt_utils_not_null_proportion_brazil_bol_2023_mdic_padded_0_99__exporter_trase_id
DBT details
-
Kind:
generic(not_null_proportion) -
Column under test:
exporter_trase_id -
Test file: trase/data_pipeline/models/brazil/trade/bol/_schema_brazil_bol.yml
Description
No description
Details
{{ dbt_utils.test_not_null_proportion(**_dbt_generic_test_kwargs) }}{{ config(alias="dbt_utils_not_null_proportion__cfbc4bd71645ba3bc765cf005757ae57") }}
with validation as (
select
sum(case when exporter_trase_id is null then 0 else 1 end) / cast(count(*) as numeric(28,6)) as not_null_proportion
from "trase_production"."main_brazil"."brazil_bol_2023_mdic_padded"
),
validation_errors as (
select
not_null_proportion
from validation
where not_null_proportion < 0.99 or not_null_proportion > 1
)
select
*
from validation_errors