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/concepts/models/overview.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -76,7 +76,7 @@ Name is ***required*** and must be ***unique***.
76
76
- Kind specifies what [kind](model_kinds.md) a model is. A model's kind determines how it is computed and stored. The default kind is `VIEW`, which means a view is created and your query is run each time that view is accessed. See [below](#incremental-model-properties) for properties that apply to incremental model kinds.
77
77
78
78
### dialect
79
-
- Dialect defines the SQL dialect of the file. By default, this uses the dialect of the SQLMesh `sqlmesh.core.config`.
79
+
- Dialect defines the SQL dialect of the model. By default, this uses the dialect in the [configuration file `model_defaults``dialect` key](../../reference/configuration.md#model-configuration). All SQL dialects [supported by the SQLGlot library](https://github.com/tobymao/sqlglot/blob/main/sqlglot/dialects/__init__.py) are allowed.
80
80
81
81
### owner
82
82
- Owner specifies who the main point of contact is for the model. It is an important field for organizations that have many data collaborators.
Copy file name to clipboardExpand all lines: docs/reference/notebook.md
+11-12Lines changed: 11 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,18 +24,18 @@ import sqlmesh
24
24
25
25
### Quick start project
26
26
27
-
If desired, you can create the [quick start example project](../quick_start.md) with the Python `init_example_project` function:
27
+
If desired, you can create the [quick start example project](../quick_start.md) with the Python `init_example_project` function. The function requires a default SQL dialect for the project's models; this example uses `snowflake`:
28
28
29
29
```python
30
30
from sqlmesh.cli.example_project import init_example_project
0 commit comments