diff --git a/website/docs/docs/build/incremental-models.md b/website/docs/docs/build/incremental-models.md index 21215437d89..21cd656484a 100644 --- a/website/docs/docs/build/incremental-models.md +++ b/website/docs/docs/build/incremental-models.md @@ -71,7 +71,7 @@ from {{ ref('app_data_events') }} -- this filter will only be applied on an incremental run -- (uses >= to include records whose timestamp occurred since the last run of this model) -- (If event_time is NULL or the table is truncated, the condition will always be true and load all records) -where event_time >= (select coalesce(max(event_time),'1900-01-01'::TIMESTAMP) from {{ this }} ) +where event_time >= (select coalesce(max(event_time),'1900-01-01') from {{ this }} ) {% endif %} ```