mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
333b2684af
5.1-related fixes libmysqld/Makefile.am fixed to recompile and link ha_*.cc files that keep dependance on THD structure. Minor fixes to make tests working. config/ac-macros/plugins.m4: condition_dependent_plugin_objects added libmysqld/Makefile.am: rules for ha_*.o files added condition_dependent_plugin_objects sent to linker libmysqld/lib_sql.cc: ddl_log initialization added mysql-test/r/flush_block_commit_notembedded.result: result fixed mysql-test/t/crash_commit_before.test: doesn't work in embedded server mysql-test/t/csv.test: replace_result added mysql-test/t/ps.test: doesn't work in embedded server should be fixed by separating ps_notembedded.test mysql-test/t/ps_1general.test: replace_result fixed mysql-test/t/ps_not_windows.test: doesn't work in embedded server mysql-test/t/trigger.test: replace_result fixed sql/sql_insert.cc: #ifdef HAVE_ROW_BASED_REPLICATION added storage/myisam/ha_myisam.cc: MY_UNPACK_FILENAME flag added
32 lines
806 B
Text
32 lines
806 B
Text
-- source include/not_embedded.inc
|
|
# 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;
|