Skip to content

Commit afa2e26

Browse files
authored
Change quickstart dialect to duckdb (#1497)
1 parent 7ac71ea commit afa2e26

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

docs/quickstart/cli.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ If using a python virtual environment, ensure it's activated first by running th
1616

1717
Create a SQLMesh scaffold with the following command, specifying a default SQL dialect for your models. The dialect should correspond to the dialect most of your models are written in; it can be overridden for specific models in the model's `MODEL` specification. All SQL dialects [supported by the SQLGlot library](https://github.com/tobymao/sqlglot/blob/main/sqlglot/dialects/dialect.py) are allowed.
1818

19-
In this example, we specify the `snowflake` dialect:
19+
In this example, we specify the `duckdb` dialect:
2020

2121
```bash
22-
sqlmesh init snowflake
22+
sqlmesh init duckdb
2323
```
2424

2525
See the [quick start overview](../quick_start.md#project-directories-and-files) for more information about the project directories, files, data, and models.

docs/quickstart/notebook.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Import the SQLMesh library to load the notebook magic commands:
1515

1616
Next, create a SQLMesh scaffold with the `%init` notebook magic, specifying a default SQL dialect for your models. The dialect should correspond to the dialect most of your models are written in; it can be overridden for specific models in the model's `MODEL` specification. All SQL dialects [supported by the SQLGlot library](https://github.com/tobymao/sqlglot/blob/main/sqlglot/dialects/dialect.py) are allowed.
1717

18-
In this example, we specify the `snowflake` dialect:
18+
In this example, we specify the `duckdb` dialect:
1919

2020
![Notebook output after project initiation](./notebook/nb-quickstart_init.png)
2121

-5.85 KB
Loading

docs/quickstart/ui.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ If using a python virtual environment, ensure it's activated by running `source
2828

2929
Create a SQLMesh scaffold with the following command, specifying a default SQL dialect for your models. The dialect should correspond to the dialect most of your models are written in; it can be overridden for specific models in the model's `MODEL` specification. All SQL dialects [supported by the SQLGlot library](https://github.com/tobymao/sqlglot/blob/main/sqlglot/dialects/dialect.py) are allowed.
3030

31-
In this example, we specify the `snowflake` dialect:
31+
In this example, we specify the `duckdb` dialect:
3232

3333
```bash
34-
sqlmesh init snowflake
34+
sqlmesh init duckdb
3535
```
3636

3737
See the [quick start overview](../quick_start.md#project-directories-and-files) for more information about the project directories, files, data, and models.

0 commit comments

Comments
 (0)