mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
814723e2a1
into neptunus.(none):/home/msvensson/mysql/mysql-5.1-new-maint BitKeeper/deleted/.del-ps_6bdb.result: Auto merged mysql-test/include/have_multi_ndb.inc: Auto merged mysql-test/include/have_ndb.inc: Auto merged mysql-test/r/log_tables.result: Auto merged mysql-test/r/partition.result: Auto merged mysql-test/r/ps_2myisam.result: Auto merged mysql-test/r/ps_3innodb.result: Auto merged mysql-test/r/ps_4heap.result: Auto merged mysql-test/r/ps_5merge.result: Auto merged mysql-test/r/ps_7ndb.result: Auto merged mysql-test/r/query_cache.result: Auto merged mysql-test/r/subselect.result: Auto merged mysql-test/t/crash_commit_before.test: Auto merged mysql-test/t/ps.test: Auto merged mysql-test/t/sp.test: Auto merged mysql-test/t/subselect.test: Auto merged BitKeeper/deleted/.del-mtr_im.pl: Delete: mysql-test/lib/mtr_im.pl client/mysqltest.c: Use remote mysql-test/mysql-test-run.pl: Use remote mysql-test/lib/mtr_process.pl: Use remote
31 lines
771 B
Text
31 lines
771 B
Text
# Don't test this under valgrind, memory leaks will occur
|
|
--source include/not_valgrind.inc
|
|
|
|
# Binary must be compiled with debug for crash to occur
|
|
--source include/have_debug.inc
|
|
|
|
--source include/have_innodb.inc
|
|
|
|
CREATE TABLE t1(a int) engine=innodb;
|
|
START TRANSACTION;
|
|
insert into t1 values(9);
|
|
|
|
# Setup the mysqld to crash at certain point
|
|
SET SESSION debug="d,crash_commit_before";
|
|
|
|
# Write file to make mysql-test-run.pl expect crash and restart
|
|
--exec echo "restart" > $MYSQLTEST_VARDIR/tmp/master0.expect
|
|
|
|
# Run the crashing query
|
|
--error 2013
|
|
COMMIT;
|
|
|
|
# Turn on reconnect
|
|
--enable_reconnect
|
|
|
|
# Call script that will poll the server waiting for it to be back online again
|
|
--source include/wait_until_connected_again.inc
|
|
|
|
SHOW CREATE TABLE t1;
|
|
|
|
SELECT * FROM t1;
|