1
-- source include/not_embedded.inc
2
# Don't test this under valgrind, memory leaks will occur
3
--source include/not_valgrind.inc
5
# Binary must be compiled with debug for crash to occur
6
--source include/have_debug.inc
8
--source include/have_innodb.inc
10
CREATE TABLE t1(a int) engine=innodb;
12
insert into t1 values(9);
14
# Setup the mysqld to crash at certain point
15
SET SESSION debug="d,crash_commit_before";
17
# Write file to make mysql-test-run.pl expect crash and restart
18
--exec echo "restart" > $MYSQLTEST_VARDIR/tmp/master0.expect
20
# Run the crashing query
27
# Call script that will poll the server waiting for it to be back online again
28
--source include/wait_until_connected_again.inc