dbt - Jinja in dbt
Identify the error in this dbt code snippet:
{% set x = 10 %}
{% if x > 5 %}
{% set y = 'big' %}
{% else %}
{% set y = 'small' %}
{% endif %}
{{ z }}