Skip to content

Commit

Permalink
Move where parameter to last position
Browse files Browse the repository at this point in the history
  • Loading branch information
LewisDavies committed Apr 27, 2022
1 parent 9663868 commit aa96b18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion macros/sql/union.sql
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{%- macro union_relations(relations, column_override=none, include=[], exclude=[], source_column_name='_dbt_source_relation', where=none) -%}
{{ return(adapter.dispatch('union_relations', 'dbt_utils')(relations, where, column_override, include, exclude, source_column_name)) }}
{{ return(adapter.dispatch('union_relations', 'dbt_utils')(relations, column_override, include, exclude, source_column_name, where)) }}
{% endmacro %}

{%- macro default__union_relations(relations, column_override=none, include=[], exclude=[], source_column_name='_dbt_source_relation', where=none) -%}
Expand Down

0 comments on commit aa96b18

Please sign in to comment.