summaryrefslogtreecommitdiffstats
path: root/mysql-test/suite/innodb/r/truncate_crash.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/suite/innodb/r/truncate_crash.result')
-rw-r--r--mysql-test/suite/innodb/r/truncate_crash.result15
1 files changed, 15 insertions, 0 deletions
diff --git a/mysql-test/suite/innodb/r/truncate_crash.result b/mysql-test/suite/innodb/r/truncate_crash.result
new file mode 100644
index 00000000..0c20e76d
--- /dev/null
+++ b/mysql-test/suite/innodb/r/truncate_crash.result
@@ -0,0 +1,15 @@
+FLUSH TABLES;
+CREATE TABLE t1 (a INT PRIMARY KEY) ENGINE=InnoDB;
+INSERT INTO t1 VALUES (1),(2);
+connect wait,localhost,root,,test;
+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';
+# restart
+disconnect wait;
+SELECT COUNT(*) FROM t1;
+COUNT(*)
+0
+TRUNCATE TABLE t1;
+DROP TABLE t1;