summaryrefslogtreecommitdiff
path: root/mysql-test/suite/innodb/r/recovery_shutdown.result
diff options
context:
space:
mode:
authorMarko Mäkelä <marko.makela@mariadb.com>2018-02-08 13:26:44 +0200
committerMarko Mäkelä <marko.makela@mariadb.com>2018-02-08 13:26:44 +0200
commit9216a4f69f113390cc55bd9c58c9f347ef4321c7 (patch)
treefdeb0d114bf23acd583d37de1728e748583ee703 /mysql-test/suite/innodb/r/recovery_shutdown.result
parent5421e3aee7b44c3c400c5dc82b8af00436790ab0 (diff)
downloadmariadb-git-9216a4f69f113390cc55bd9c58c9f347ef4321c7.tar.gz
Make the test innodb.recovery_shutdown more robust
Before killing the server, we have to FLUSH TABLES in order to prevent the corruption of any MyISAM system tables.
Diffstat (limited to 'mysql-test/suite/innodb/r/recovery_shutdown.result')
-rw-r--r--mysql-test/suite/innodb/r/recovery_shutdown.result2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/suite/innodb/r/recovery_shutdown.result b/mysql-test/suite/innodb/r/recovery_shutdown.result
index 861461dd072..47398c1ca23 100644
--- a/mysql-test/suite/innodb/r/recovery_shutdown.result
+++ b/mysql-test/suite/innodb/r/recovery_shutdown.result
@@ -52,5 +52,5 @@ INSERT INTO t1(a) SELECT NULL FROM t1;
INSERT INTO t1(a) SELECT NULL FROM t1;
SET GLOBAL innodb_flush_log_at_trx_commit=1;
CREATE TABLE u(a SERIAL) ENGINE=INNODB;
-# Kill and restart
+FLUSH TABLES;
DROP TABLE t,u;