You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/quickstart/cli.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -166,9 +166,9 @@ Line 3 of the output notes that `sqlmesh plan` successfully executed the project
166
166
167
167
Line 5 describes what environments the plan will affect when applied - a new `prod` environment in this case.
168
168
169
-
Lines 7-10 of the output show that SQLMesh detected three new models relative to the current empty environment.
169
+
Lines 7-11 of the output show that SQLMesh detected three new models relative to the current empty environment.
170
170
171
-
Lines 11-14 list each model that will be executed by the plan, along with the date intervals that will be run. Note that `full_model` and `incremental_model` both show `2020-01-01` as their start date because:
171
+
Lines 12-15 list each model that will be executed by the plan, along with the date intervals that will be run. Note that `full_model` and `incremental_model` both show `2020-01-01` as their start date because:
172
172
173
173
1. The incremental model specifies that date in the `start` property of its `MODEL` statement and
174
174
2. The full model depends on the incremental model.
@@ -250,7 +250,7 @@ The `seed_model` date range begins on the same day the plan was made because `SE
250
250
GROUP BY item_id
251
251
```
252
252
253
-
Line 15 asks you whether to proceed with executing the model backfills described in lines 11-14. Enter `y` and press `Enter`, and SQLMesh will execute the models and return this output:
253
+
Line 16 asks you whether to proceed with executing the model backfills described in lines 11-14. Enter `y` and press `Enter`, and SQLMesh will execute the models and return this output:
0 commit comments