Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion docs/materialized-view/incremental-materialized-view.md
Original file line number Diff line number Diff line change
Expand Up @@ -1115,13 +1115,17 @@ ORDER BY uuid ASC
3 rows in set. Elapsed: 0.004 sec.
```

:::note
As of ClickHouse v25.5, `parallel_view_processing` only applies to `INSERT ... SELECT` queries. Use `INSERT ... SELECT` to demonstrate parallel view processing as shown below.
:::

Conversely, consider what happens if we insert a row with `parallel_view_processing=1` enabled. With this enabled, the views are executed in parallel, giving no guarantees to the order at which rows arrive to the target table:

```sql
TRUNCATE target;
SET parallel_view_processing = 1;

INSERT INTO source VALUES ('test');
INSERT INTO source SELECT 'test';
```

```response
Expand Down
Loading