Skip to content

Commit

Permalink
remove print statement, use empty string instead (#517)
Browse files Browse the repository at this point in the history
  • Loading branch information
guenp authored Feb 24, 2025
1 parent cd8ddeb commit 8227241
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dbt/include/duckdb/macros/materializations/external.sql
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@
{% if row_count[0][0] == 0 %}
where 1
{%- for col in get_columns_in_relation(temp_relation) -%}
{{ print(' ') }} AND {{ col.column }} is not NULL
{{ '' }} AND {{ col.column }} is not NULL
{%- endfor -%}
{% endif %}
);
Expand All @@ -117,7 +117,7 @@
{% if row_count[0][0] == 0 %}
where 1
{%- for col in get_columns_in_relation(temp_relation) -%}
{{ print(' ') }} AND {{ col.column }} is not NULL
{{ '' }} AND {{ col.column }} is not NULL
{%- endfor -%}
{% endif %}
);
Expand All @@ -137,7 +137,7 @@
{% if row_count[0][0] == 0 %}
where 1
{%- for col in get_columns_in_relation(temp_relation) -%}
{{ print(' ') }} AND {{ col.column }} is not NULL
{{ '' }} AND {{ col.column }} is not NULL
{%- endfor -%}
{% endif %}
);
Expand Down

0 comments on commit 8227241

Please sign in to comment.