Skip to content

Commit

Permalink
Remove cross-db dbt_utils references (#676)
Browse files Browse the repository at this point in the history
Remove reference to cross-db utils in pivot macro
  • Loading branch information
bakerbryce authored Sep 19, 2022
1 parent 59bc852 commit d99da52
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 @@ -69,7 +69,7 @@ Arguments:
{{ agg }}(
{% if distinct %} distinct {% endif %}
case
when {{ column }} {{ cmp }} '{{ dbt_utils.escape_single_quotes(value) }}'
when {{ column }} {{ cmp }} '{{ escape_single_quotes(value) }}'
then {{ then_value }}
else {{ else_value }}
end
Expand Down

0 comments on commit d99da52

Please sign in to comment.