summaryrefslogtreecommitdiff
path: root/mysql-test/suite/innodb/r/innodb_bug53756.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/suite/innodb/r/innodb_bug53756.result')
-rw-r--r--mysql-test/suite/innodb/r/innodb_bug53756.result14
1 files changed, 1 insertions, 13 deletions
diff --git a/mysql-test/suite/innodb/r/innodb_bug53756.result b/mysql-test/suite/innodb/r/innodb_bug53756.result
index 6b44479677f..9809682a4b2 100644
--- a/mysql-test/suite/innodb/r/innodb_bug53756.result
+++ b/mysql-test/suite/innodb/r/innodb_bug53756.result
@@ -1,4 +1,3 @@
-DROP TABLE IF EXISTS bug_53756 ;
CREATE TABLE bug_53756 (pk INT, c1 INT) ENGINE=InnoDB;
ALTER TABLE bug_53756 ADD PRIMARY KEY (pk);
INSERT INTO bug_53756 VALUES(1, 11), (2, 22), (3, 33), (4, 44);
@@ -76,15 +75,9 @@ pk c1
2 22
3 77
4 44
-connection default;
-#
-# Crash server.
START TRANSACTION;
INSERT INTO bug_53756 VALUES (666,666);
-SET SESSION debug_dbug="+d,crash_commit_before";
-COMMIT;
-ERROR HY000: Lost connection to MySQL server during query
-
+# Kill and restart
disconnect con1;
disconnect con2;
disconnect con3;
@@ -92,9 +85,6 @@ disconnect con4;
disconnect con5;
disconnect con6;
#
-# Restart server.
-
-#
# Select recovered data.
# Delete of row 1 was committed.
# Update of row 3 was committed.
@@ -106,6 +96,4 @@ pk c1
2 22
3 77
4 44
-
-# Clean up.
DROP TABLE bug_53756;