dbt - Incremental Models
What will be the effect of running this dbt incremental model for the second time?
{{ config(materialized='incremental') }}
select * from source_table where updated_at > (select max(updated_at) from {{ this }})