dbt - Incremental Models
Identify the error in this incremental model SQL snippet:
{{ config(materialized='incremental') }}
select id, updated_at, data
from source_table
{% if is_incremental() %}
where updated_at > (select max(updated_at) from source_table)
{% endif %}
