Skip to content

Commit

Permalink
fix: Incremental partition drop
Browse files Browse the repository at this point in the history
  • Loading branch information
ptiurin committed Sep 4, 2024
1 parent ccfc398 commit 07f2b64
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
SELECT
{% if partition_cols is iterable and partition_cols is not string -%}
DISTINCT({{ partition_cols | join(', ') }})
DISTINCT {{ partition_cols | join(', ') }}
{%- else -%}
DISTINCT {{ partition_cols }}
{%- endif %}
Expand Down Expand Up @@ -110,7 +110,7 @@
of extra work. -#}
'{{ vals | join(', ') }}'
{%- else -%}
{{ vals | join(', ') }}
'{{ vals | join("', '") }}'
{%- endif -%}
{%- endif -%}
{%- else -%}
Expand Down

0 comments on commit 07f2b64

Please sign in to comment.