Skip to content

DBT Test: Dbt Expectations Expect Column Values To Not Match Regex Indonesia Palm Oil Sei Pcs V1 2 5 Seipcs 2021 Country I S Na Nan None Unknown

DBT test name: dbt_expectations_expect_column_values_to_not_match_regex_indonesia_palm_oil_sei_pcs_v1_2_5_seipcs_2021_country___i_s_NA_NAN_NONE_UNKNOWN_

DBT details


Description

No description


Details

Models

Macros

  • test_expect_column_values_to_not_match_regex
  • get_where_subquery
{{ dbt_expectations.test_expect_column_values_to_not_match_regex(**_dbt_generic_test_kwargs) }}{{ config(alias="dbt_expectations_expect_column_25c65e4855d2d200d9b3fb4665058573") }}
    with grouped_expression as (
    select








regexp_matches(country, '(?i)^(\s*|NA|NAN|NONE|UNKNOWN)$', '')


 = 0
 as expression


    from "memory"."main"."indonesia_palm_oil_sei_pcs_v1_2_5_seipcs_2021"


),
validation_errors as (

    select
        *
    from
        grouped_expression
    where
        not(expression = true)

)

select *
from validation_errors