Skip to content

Commit

Permalink
Fixed SQL generation for delete+insert incremental append strategy
Browse files Browse the repository at this point in the history
  • Loading branch information
aosingh committed Jun 5, 2024
1 parent 6d22412 commit 4311eb5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@
from {{ temp_relation }})';
END;
{%- else -%}
insert {%- if parallel -%} /*+parallel({{ parallel }})*/ {%- endif -%} into {{ target_relation }} ({{ dest_cols_csv }})
insert {% if parallel %} /*+parallel({{ parallel }})*/ {% endif %} into {{ target_relation }} ({{ dest_cols_csv }})
(
select {{ dest_cols_csv }}
from {{ temp_relation }}
Expand Down

0 comments on commit 4311eb5

Please sign in to comment.