Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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(' ,') + ', ' %}
{% 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
{{select_gb_cols}}
{% 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
Loading