dbt - Incremental Models
An incremental model uses this SQL:
After running
select * from source_table where id > (select max(id) from {{ this }})After running
dbt run the first time, you notice no rows in the target table. What is the most likely cause?