Commit 83280a1
authored
fix(database): correct MVCC write mechanism description (#2849)
Correct the misleading statement that MVCC creates snapshots instead of modifying data rows. InnoDB actually uses update-in-place: it directly updates the current row and saves old versions to Undo Log. Read operations achieve consistent reads via ReadView and Undo Log version chain.1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
12 | 12 | | |
13 | 13 | | |
14 | 14 | | |
15 | | - | |
| 15 | + | |
16 | 16 | | |
17 | 17 | | |
18 | 18 | | |
| |||
0 commit comments