Skip to content

Commit

Permalink
feat: implement dateadd macro
Browse files Browse the repository at this point in the history
  • Loading branch information
silviustanimir committed Nov 14, 2023
1 parent 8a89554 commit 9aa4a75
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ This dbt package contains macros for SQL functions to run the dbt project on mul
- [Multiple databases](#Multiple-databases)
- [as_varchar](#as_varchar-source)
- [create_index](#create_index-source)
- [date_add](#date_add-source)
- [date_from_timestamp](#date_from_timestamp-source)
- [datediff](#datediff-source)
- [string_agg](#string_agg-source)
Expand Down Expand Up @@ -79,6 +80,12 @@ In case you want to create the index on a source table, refer to the table using
) }}
```

#### dateadd ([source](macros/multiple_databases/dateadd.sql))
This macro adds a specified number value (as a signed integer) to a specified datepart of an input date value, and then returns that modified value. The datepart can be any of the following values for SQL Server and Snowflake: year, quarter, month, week, day, hour, minute, second, millisecond. For Databricks, the datepart can be any of the following values: year, day, hour, minute, second, millisecond. The difference in weeks is calculated for weeks starting on Monday.

Usage:
`{{ pm_utils.dateadd('[expression]') }}`

#### date_from_timestamp ([source](macros/multiple_databases/date_from_timestamp.sql))
This macro extracts the date part from a datetime field.

Expand Down
20 changes: 20 additions & 0 deletions macros/multiple_databases/dateadd.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{%- macro dateadd(datepart, number, date_field) -%}

{%- if target.type == 'databricks' -%}
{%- if datepart == 'millisecond' -%}
timestamp_millis(unix_millis({{ date_field }}) + {{ number }})
{%- elif datepart == 'second' -%}
timestamp_seconds(unix_seconds({{ date_field }}) + {{ number }})
{%- elif datepart == 'minute' -%}
timestamp_seconds(unix_seconds({{ date_field }}) + {{ number }}*60)
{%- elif datepart == 'hour' -%}
timestamp_seconds(unix_seconds({{ date_field }}) + {{ number }}*3600)
{%- elif datepart == 'day' -%}
date_add({{ datepart }}, {{ number }})
{%- elif datepart == 'week' -%}
date_add({{ datepart }}, {{ number }}*7)
{%- endif -%}
{%- else -%}
dateadd({{ datepart }}, {{ number }}, {{ date_field }})
{%- endif -%}
{%- endmacro -%}

0 comments on commit 9aa4a75

Please sign in to comment.