-
Notifications
You must be signed in to change notification settings - Fork 496
/
sequential_values.sql
42 lines (32 loc) · 1.28 KB
/
sequential_values.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
{% test sequential_values(model, column_name, interval=1, datepart=None, group_by_columns = []) %}
{{ return(adapter.dispatch('test_sequential_values', 'dbt_utils')(model, column_name, interval, datepart, group_by_columns)) }}
{% endtest %}
{% macro default__test_sequential_values(model, column_name, interval=1, datepart=None, group_by_columns = []) %}
{% set previous_column_name = "previous_" ~ dbt_utils.slugify(column_name) %}
{% if group_by_columns|length() > 0 %}
{% set select_gb_cols = group_by_columns|join(',') + ', ' %}
{% set partition_gb_cols = 'partition by ' + group_by_columns|join(',') %}
{% endif %}
with windowed as (
select
{{ select_gb_cols }}
{{ column_name }},
lag({{ column_name }}) over (
{{partition_gb_cols}}
order by {{ column_name }}
) as {{ previous_column_name }}
from {{ model }}
),
validation_errors as (
select
*
from windowed
{% if datepart %}
where not(cast({{ column_name }} as {{ dbt.type_timestamp() }})= cast({{ dbt.dateadd(datepart, interval, previous_column_name) }} as {{ dbt.type_timestamp() }}))
{% else %}
where not({{ column_name }} = {{ previous_column_name }} + {{ interval }})
{% endif %}
)
select *
from validation_errors
{% endmacro %}