Skip to content

Commit

Permalink
Remove unnecessary parens from pivot macro
Browse files Browse the repository at this point in the history
  • Loading branch information
clrcrl committed May 11, 2021
1 parent 09abb04 commit 603e867
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion macros/sql/pivot.sql
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ Arguments:
{% if quote_identifiers %}
as {{ adapter.quote(prefix ~ v ~ suffix) }}
{% else %}
as ({{ dbt_utils.slugify(prefix ~ v ~ suffix) }})
as {{ dbt_utils.slugify(prefix ~ v ~ suffix) }}
{% endif %}
{% endif %}
{% if not loop.last %},{% endif %}
Expand Down

0 comments on commit 603e867

Please sign in to comment.