auto commit

This commit is contained in:
CyC2018
2018-09-14 21:35:10 +08:00
parent 8a9b8b15ae
commit 60ed4f498c
6 changed files with 32 additions and 19 deletions

View File

@ -294,12 +294,12 @@ SELECT ... FOR UPDATE;
----
| 隔离级别 | 脏读 | 不可重复读 | 幻影读 |
| :---: | :---: | :---:| :---: |
| 未提交读 | √ | √ | √ |
| 提交读 | × | √ | √ |
| 可重复读 | × | × | √ |
| 可串行化 | × | × | × |
| 隔离级别 | 脏读 | 不可重复读 | 幻影读 | 加锁读 |
| :---: | :---: | :---:| :---: | :---: |
| 未提交读 | √ | √ | √ | × |
| 提交读 | × | √ | √ | × |
| 可重复读 | × | × | √ | × |
| 可串行化 | × | × | × | √ |
# 五、多版本并发控制