Skip to content

Commit

Permalink
Cross-database date macro (#1219)
Browse files Browse the repository at this point in the history
* Cross-database `date` macro

* Temporary dev requirements for testing

* Update changelog entry

* Revert "Temporary dev requirements for testing"

This reverts commit b46183a.
  • Loading branch information
dbeatty10 authored May 13, 2024
1 parent d148cc3 commit b7bb0bc
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .changes/unreleased/Features-20240501-151902.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
kind: Features
body: Cross-database `date` macro
time: 2024-05-01T15:19:02.929676-06:00
custom:
Author: dbeatty10
Issue: 1221
3 changes: 3 additions & 0 deletions dbt/include/bigquery/macros/utils/date.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{% macro bigquery__date(year, month, day) -%}
date({{ year }}, {{ month }}, {{ day }})
{%- endmacro %}
5 changes: 5 additions & 0 deletions tests/functional/adapter/utils/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
from dbt.tests.adapter.utils.test_cast_bool_to_text import BaseCastBoolToText
from dbt.tests.adapter.utils.test_concat import BaseConcat
from dbt.tests.adapter.utils.test_current_timestamp import BaseCurrentTimestampAware
from dbt.tests.adapter.utils.test_date import BaseDate
from dbt.tests.adapter.utils.test_dateadd import BaseDateAdd
from dbt.tests.adapter.utils.test_datediff import BaseDateDiff
from dbt.tests.adapter.utils.test_date_spine import BaseDateSpine
Expand Down Expand Up @@ -117,6 +118,10 @@ class TestCurrentTimestamp(BaseCurrentTimestampAware):
pass


class TestDate(BaseDate):
pass


class TestDateAdd(BaseDateAdd):
pass

Expand Down

0 comments on commit b7bb0bc

Please sign in to comment.