Skip to content

Commit b6c7a69

Browse files
committed
clear docs
1 parent 5f5f429 commit b6c7a69

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/guides/linter.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ Here are all of SQLMesh's built-in linting rules:
7575
| `noselectstar` | Stylistic | The query's top-level selection may not be `SELECT *`, even if SQLMesh can expand the `SELECT *` into individual columns |
7676
| `nomissingaudits` | Governance | SQLMesh did not find any `audits` in the model's configuration to test data quality. |
7777
| `nomissingexternalmodels` | Governance | All external models must be registered in the external_models.yaml file |
78-
| `cronvalidator` | Governance | Upstream model has a cron expression with longer intervals than downstream model. |
78+
| `cronvalidator` | Governance | Upstream model has a cron expression with longer intervals than downstream model. Example: step_1(`@weekly`) -> step_2(`@daily`) -> step_3(`*/5 * * * *`). step_2 and step_3 are anchored to step_1's cron and will run on the same schedule as step_1. The fix is to align the schedules where a downstream model's cron is the same or has a longer cron interval than an upstream model's. |
7979

8080
### User-defined rules
8181

0 commit comments

Comments
 (0)