Skip to content

Commit

Permalink
wip: do not call string
Browse files Browse the repository at this point in the history
  • Loading branch information
cpita-felix committed Apr 10, 2024
1 parent 4c3a0e4 commit e76b3b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion macros/dataset.sql
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ dataset as (
)
{# Additional Join Condition relies on primary and appended subquery/CTE names #}
{% if activity.additional_join_condition is string %}
and ( {{ activity.additional_join_condition(primary=primary(), appended=appended) }} )
and ( {{ activity.additional_join_condition }} )
{% else %}
and ( {{ activity.additional_join_condition(primary(), appended) }} )
{% endif %}
Expand Down

0 comments on commit e76b3b2

Please sign in to comment.