We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f7de22 commit 8af985aCopy full SHA for 8af985a
docs/comparisons.md
@@ -95,11 +95,11 @@ The example above shows how incremental models behave differently in dbt dependi
95
SQLMesh keeps track of which date ranges exist, producing a simplified and efficient query as follows:
96
97
```sql
98
--- sqlmesh incremental
+-- SQLMesh incremental
99
SELECT *
100
FROM raw.events e
101
JOIN raw.event_dims d
102
- -- date ranges are handled automatically by sqlmesh
+ -- date ranges are handled automatically by SQLMesh
103
ON e.id = d.id AND d.ds BETWEEN @start_ds AND @end_ds
104
WHERE d.ds BETWEEN @start_ds AND @end_ds
105
```
0 commit comments