Skip to content

Commit c402a43

Browse files
authored
fix naming in a few places
1 parent ea80ed8 commit c402a43

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

docs/guides/developer/lightweight-update.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ CREATE TABLE test_on_fly_mutations (id UInt64, v String)
2424
ENGINE = MergeTree ORDER BY id;
2525

2626
-- Disable background materialization of mutations to showcase
27-
-- default behavior when lightweight updates are not enabled
27+
-- default behavior when on-the-fly mutations are not enabled
2828
SYSTEM STOP MERGES test_on_fly_mutations;
2929
SET mutations_sync = 0;
3030

@@ -39,8 +39,9 @@ ALTER TABLE test_on_fly_mutations DELETE WHERE v = 'e';
3939
```
4040

4141
Let's check the result of the updates via a `SELECT` query:
42+
4243
```sql
43-
-- Explicitly disable lightweight updates
44+
-- Explicitly disable on-the-fly-mutations
4445
SET apply_mutations_on_fly = 0;
4546

4647
SELECT id, v FROM test_on_fly_mutations ORDER BY id;

0 commit comments

Comments
 (0)