dbt - Incremental Models
Given this incremental model using the append strategy:
What will happen when this model runs?
{{ config(materialized='incremental', incremental_strategy='append') }}
select id, value from source_table where updated_at > (select max(updated_at) from {{ this }})What will happen when this model runs?
