Skip to content

Commit

Permalink
Add brackets
Browse files Browse the repository at this point in the history
  • Loading branch information
agnessnowplow committed Jan 12, 2024
1 parent 93c88a8 commit c33ed9f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions macros/paths_to_conversion.sql
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ You may obtain a copy of the Snowplow Personal and Academic License Version 1.0

{% if var('snowplow__channels_to_exclude') %}
-- Filters out any unwanted channels
and channel not in ({{ snowplow_utils.print_list(var('snowplow__channels_to_exclude')) }}) or channel is null
and (channel not in ({{ snowplow_utils.print_list(var('snowplow__channels_to_exclude')) }}) or channel is null)
{% endif %}

{% if var('snowplow__channels_to_include') %}
Expand All @@ -291,7 +291,7 @@ You may obtain a copy of the Snowplow Personal and Academic License Version 1.0

{% if var('snowplow__campaigns_to_exclude') %}
-- Filters out any unwanted channels
and campaign not in ({{ snowplow_utils.print_list(var('snowplow__campaigns_to_exclude')) }}) or campaign is null
and (campaign not in ({{ snowplow_utils.print_list(var('snowplow__campaigns_to_exclude')) }}) or campaign is null)
{% endif %}

{% if var('snowplow__campaigns_to_include') %}
Expand Down

0 comments on commit c33ed9f

Please sign in to comment.