dbt - Jinja in dbt
Examine this dbt model SQL snippet:
What is the error in this snippet?
SELECT
user_id,
CASE
WHEN age > 18 THEN 'adult'
ELSE 'minor'
END AS age_group
FROM usersWhat is the error in this snippet?
