Skip to content

Commit 4232773

Browse files
authored
Fix logic to not reset the variable (#1043)
1 parent 31382da commit 4232773

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

macros/generic_tests/unique_combination_of_columns.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
{% elif quote_columns %}
1010
{%- set column_list=[] %}
1111
{% for column in combination_of_columns -%}
12-
{% set column_list = column_list.append( adapter.quote(column) ) %}
12+
{% do column_list.append( adapter.quote(column) ) %}
1313
{%- endfor %}
1414
{% else %}
1515
{{ exceptions.raise_compiler_error(

0 commit comments

Comments
 (0)