dbt - Incremental Models
What is the expected output when running an incremental model with this condition?
Assuming the existing model has max order_date '2023-05-01' and source has orders up to '2023-05-10'.
{{ config(materialized='incremental') }}
select * from sales where order_date > (select max(order_date) from {{ this }})Assuming the existing model has max order_date '2023-05-01' and source has orders up to '2023-05-10'.
