Skip to content

DBT Test: Dbt Expectations Expect Column Values To Match Regex Indonesia Palm Oil V1 2 5 Country Of First Import Trase Id A Z 2

DBT test name: dbt_expectations_expect_column_values_to_match_regex_indonesia_palm_oil_v1_2_5_country_of_first_import_trase_id___A_Z_2_

DBT details


Description

No description


Details

Models

Macros

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








regexp_matches(country_of_first_import_trase_id, '^[A-Z]{2}$', '')


 > 0
 as expression


    from "memory"."main"."indonesia_palm_oil_v1_2_5"


),
validation_errors as (

    select
        *
    from
        grouped_expression
    where
        not(expression = true)

)

select *
from validation_errors