Merge pull request #157 from xzy57369/patch-1

Update 数据库系统原理.md
This commit is contained in:
CyC2018 2018-04-06 22:00:33 +08:00 committed by GitHub
commit 36bd7b9757
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -311,7 +311,7 @@ InnoDB 的 MVCC 使用到的快照存储在 Undo 日志中,该日志通过回
## 快照读与当前读
### 1. 当前
### 1. 快照
读取最新的数据。
@ -319,7 +319,7 @@ InnoDB 的 MVCC 使用到的快照存储在 Undo 日志中,该日志通过回
select * from table ....;
```
### 2. 快照
### 2. 当前
读取快照中的数据。