dbt - Performance Optimization
Given this dbt model config and SQL, what will be the result when run?
Model config:
{% if is_incremental() %}
select * from source_table where updated_at > (select max(updated_at) from {{ this }})
{% else %}
select * from source_table
{% endif %}Model config:
materialized: 'incremental'
