Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
16 changed files
with
187 additions
and
103 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,14 +1,14 @@ | ||
| FLUSH TABLES; | ||
| CREATE TABLE t1 (a INT PRIMARY KEY) ENGINE=InnoDB; | ||
| INSERT INTO t1 SET a=1; | ||
| INSERT INTO t1 VALUES (1),(2); | ||
| connect wait,localhost,root,,test; | ||
| SET DEBUG_SYNC='after_trx_committed_in_memory SIGNAL c WAIT_FOR ever'; | ||
| SET DEBUG_SYNC='before_trx_state_committed_in_memory SIGNAL c WAIT_FOR ever'; | ||
| TRUNCATE TABLE t1; | ||
| connection default; | ||
| SET DEBUG_SYNC='now WAIT_FOR c'; | ||
| disconnect wait; | ||
| SELECT * FROM t1; | ||
| a | ||
| 1 | ||
| SELECT COUNT(*) FROM t1; | ||
| COUNT(*) | ||
| 0 | ||
| TRUNCATE TABLE t1; | ||
| DROP TABLE t1; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.