dbt - Incremental Models
Given this incremental model SQL snippet:
What happens when you run
select * from source_table where updated_at > (select max(updated_at) from {{ this }})What happens when you run
dbt run without full refresh?