Skip to content

Commit

Permalink
Update not_null_proportion.sql
Browse files Browse the repository at this point in the history
  • Loading branch information
chaubilly authored Dec 30, 2024
1 parent 5f93c5a commit 9ef9693
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions macros/generic_tests/not_null_proportion.sql
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
{% set at_most = kwargs.get('at_most', kwargs.get('arg', 1)) %}

{% if group_by_columns|length() > 0 %}
{% set select_gb_cols = group_by_columns|join(' ,') + ' as group, ' %}
{% set select_gb_cols = group_by_columns|join(' ,') + ' as _group, ' %}
{% set groupby_gb_cols = 'group by ' + group_by_columns|join(',') %}
{% endif %}

Expand All @@ -22,7 +22,7 @@ with validation as (
),
validation_errors as (
select
{% if group_by_columns|length() > 0 %}"group",{% endif %}
{% if group_by_columns|length() > 0 %}_group,{% endif %}
not_null_proportion
from validation
where not_null_proportion < {{ at_least }} or not_null_proportion > {{ at_most }}
Expand Down

0 comments on commit 9ef9693

Please sign in to comment.