Skip to content

Commit 1b6bf8e

Browse files
committed
Remove trailing space after the comma
Signed-off-by: Thomas Sapelza <[email protected]>
1 parent ef0908b commit 1b6bf8e

File tree

1 file changed

+2
-2
lines changed
  • dbt/include/oracle/macros/materializations/incremental

1 file changed

+2
-2
lines changed

dbt/include/oracle/macros/materializations/incremental/helpers.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,13 @@
4545
when matched then
4646
update set
4747
{% for col in dest_columns if col.name.upper() != unique_key.upper() -%}
48-
target.{{ col.name }} = temp.{{ col.name }}{% if not loop.last %}, {% endif %}
48+
target.{{ col.name }} = temp.{{ col.name }}{% if not loop.last %},{% endif %}
4949
{% endfor -%}
5050
when not matched then
5151
insert({{ dest_cols_csv }})
5252
values(
5353
{% for col in dest_columns -%}
54-
temp.{{ col.name }}{% if not loop.last %}, {% endif %}
54+
temp.{{ col.name }}{% if not loop.last %},{% endif %}
5555
{% endfor -%}
5656
)
5757
{%- else -%}

0 commit comments

Comments
 (0)