forked from calogica/dbt-expectations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
expect_compound_columns_to_be_unique.sql
60 lines (49 loc) · 1.69 KB
/
expect_compound_columns_to_be_unique.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{% test expect_compound_columns_to_be_unique(model,
column_list,
quote_columns=False,
ignore_row_if="all_values_are_missing",
row_condition=None
) %}
{% if not column_list %}
{{ exceptions.raise_compiler_error(
"`column_list` must be specified as a list of columns. Got: '" ~ column_list ~"'.'"
) }}
{% endif %}
{% if not quote_columns %}
{%- set columns=column_list %}
{% elif quote_columns %}
{%- set columns=[] %}
{% for column in column_list -%}
{% set columns = columns.append( adapter.quote(column) ) %}
{%- endfor %}
{% else %}
{{ exceptions.raise_compiler_error(
"`quote_columns` argument for expect_compound_columns_to_be_unique test must be one of [True, False] Got: '" ~ quote_columns ~"'.'"
) }}
{% endif %}
{%- set row_condition_ext -%}
{%- if row_condition %}
{{ row_condition }} and
{% endif -%}
{{ dbt_expectations.ignore_row_if_expression(ignore_row_if, columns) }}
{%- endset -%}
with validation_errors as (
select
{% for column in columns -%}
{{ column }},
{%- endfor %}
count(*) as {{adapter.quote("n_records")}}
from {{ model }}
where
1=1
{%- if row_condition_ext %}
and {{ row_condition_ext }}
{% endif %}
group by
{% for column in columns -%}
{{ column }}{% if not loop.last %},{% endif %}
{%- endfor %}
having count(*) > 1
)
select * from validation_errors
{% endtest %}