Skip to content

Commit

Permalink
Update caveats
Browse files Browse the repository at this point in the history
  • Loading branch information
dbeatty10 committed Jul 31, 2023
1 parent fe03f43 commit e13d72d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion macros/sql/deduplicate.sql
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,10 @@ path: {}
{%- endmacro -%}

{#
-- ⚠️ This macro drops rows that contain NULL values unless the `row_alias` parameter is included ⚠️
-- ⚠️ This macro drops rows that contain NULL values unless one of the following is true:
-- - `relation` parameter is a non-CTE dbt Relation
-- - `row_alias` parameter is included
-- - `columns` parameter is included
#}
{%- macro default__deduplicate(relation, partition_by, order_by) -%}
{% set row_alias = kwargs.get('row_alias') %}
Expand Down

0 comments on commit e13d72d

Please sign in to comment.