Skip to content

Commit dcab142

Browse files
authored
fix toggle indents (#3918)
1 parent 2540204 commit dcab142

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/concepts/models/model_kinds.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -506,7 +506,7 @@ WHERE
506506
CREATE TABLE IF NOT EXISTS `sqlmesh-public-demo`.`sqlmesh__demo`.`demo__incremental_by_unique_key_example__1161945221` (`id` INT64, `item_id` INT64, `event_date` DATE)
507507
```
508508

509-
SQLMesh will validate the model's query before processing data (note the `FALSE LIMIT 0` in the `WHERE` statement and the placeholder dates).
509+
SQLMesh will validate the model's query before processing data (note the `FALSE LIMIT 0` in the `WHERE` statement and the placeholder dates).
510510

511511
```sql
512512
SELECT `seed_model`.`id` AS `id`, `seed_model`.`item_id` AS `item_id`, `seed_model`.`event_date` AS `event_date`
@@ -682,13 +682,13 @@ GROUP BY title;
682682
item_id
683683
```
684684

685-
SQLMesh will execute this SQL to create a versioned table in the physical layer. Note that the table's version fingerprint, `2345651858`, is part of the table name.
685+
SQLMesh will execute this SQL to create a versioned table in the physical layer. Note that the table's version fingerprint, `2345651858`, is part of the table name.
686686

687687
```sql
688688
CREATE TABLE IF NOT EXISTS `sqlmesh-public-demo`.`sqlmesh__demo`.`demo__full_model_example__2345651858` (`item_id` INT64, `num_orders` INT64)
689689
```
690690

691-
SQLMesh will validate the model's query before processing data (note the `WHERE FALSE` and `LIMIT 0`).
691+
SQLMesh will validate the model's query before processing data (note the `WHERE FALSE` and `LIMIT 0`).
692692

693693
```sql
694694
SELECT `incremental_model`.`item_id` AS `item_id`, COUNT(DISTINCT `incremental_model`.`id`) AS `num_orders`
@@ -772,7 +772,7 @@ FROM db.employees;
772772
'hello there' as a_column
773773
```
774774

775-
SQLMesh will execute this SQL to create a versioned view in the physical layer. Note that the view's version fingerprint, `1024042926`, is part of the view name.
775+
SQLMesh will execute this SQL to create a versioned view in the physical layer. Note that the view's version fingerprint, `1024042926`, is part of the view name.
776776

777777
```sql
778778
CREATE OR REPLACE VIEW `sqlmesh-public-demo`.`sqlmesh__demo`.`demo__example_view__1024042926`
@@ -858,7 +858,7 @@ The `SEED` model kind is used to specify [seed models](./seed_models.md) for usi
858858
)
859859
```
860860

861-
SQLMesh will execute this SQL to create a versioned table in the physical layer. Note that the table's version fingerprint, `3038173937`, is part of the table name.
861+
SQLMesh will execute this SQL to create a versioned table in the physical layer. Note that the table's version fingerprint, `3038173937`, is part of the table name.
862862

863863
```sql
864864
CREATE TABLE IF NOT EXISTS `sqlmesh-public-demo`.`sqlmesh__demo`.`demo__seed_example__3038173937` (`id` INT64, `item_id` INT64, `event_date` DATE)

0 commit comments

Comments
 (0)