From 66ade673ecdbbad042e81c8287b552bfc6daf0c9 Mon Sep 17 00:00:00 2001 From: XuZiyang <573609568@qq.com> Date: Fri, 6 Apr 2018 21:31:35 +0800 Subject: [PATCH] =?UTF-8?q?Update=20=E6=95=B0=E6=8D=AE=E5=BA=93=E7=B3=BB?= =?UTF-8?q?=E7=BB=9F=E5=8E=9F=E7=90=86.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- notes/数据库系统原理.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/notes/数据库系统原理.md b/notes/数据库系统原理.md index 63d9fa30..4962f471 100644 --- a/notes/数据库系统原理.md +++ b/notes/数据库系统原理.md @@ -311,7 +311,7 @@ InnoDB 的 MVCC 使用到的快照存储在 Undo 日志中,该日志通过回 ## 快照读与当前读 -### 1. 当前读 +### 1. 快照读 读取最新的数据。 @@ -319,7 +319,7 @@ InnoDB 的 MVCC 使用到的快照存储在 Undo 日志中,该日志通过回 select * from table ....; ``` -### 2. 快照读 +### 2. 当前读 读取快照中的数据。