mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 13:02:28 +01:00
c635d37479
BitKeeper/etc/ignore: auto-union BitKeeper/etc/logging_ok: auto-union VC++Files/sql/mysqld.dsp: Auto merged client/Makefile.am: Auto merged client/mysql.cc: Auto merged client/mysqltest.c: Auto merged configure.in: Auto merged include/my_global.h: Auto merged include/my_pthread.h: Auto merged include/my_sys.h: Auto merged include/mysql_com.h: Auto merged libmysqld/Makefile.am: Auto merged libmysqld/lib_sql.cc: Auto merged myisam/mi_check.c: Auto merged myisam/myisamchk.c: Auto merged myisam/myisamdef.h: Auto merged mysql-test/install_test_db.sh: Auto merged mysql-test/r/insert_select.result: Auto merged mysql-test/r/join_outer.result: Auto merged mysql-test/r/null.result: Auto merged mysql-test/r/connect.result: Auto merged mysql-test/r/func_sapdb.result: Auto merged mysql-test/r/mix_innodb_myisam_binlog.result: Auto merged mysql-test/r/mysqldump.result: Auto merged mysql-test/r/rpl_change_master.result: Auto merged mysql-test/r/rpl_log.result: Auto merged mysql-test/r/show_check.result: Auto merged mysql-test/r/symlink.result: Auto merged mysql-test/r/rpl_flush_log_loop.result: Auto merged mysql-test/r/rpl_flush_tables.result: Auto merged mysql-test/r/rpl_loaddata.result: Auto merged mysql-test/r/rpl_loaddata_rule_m.result: Auto merged mysql-test/r/rpl_loaddata_rule_s.result: Auto merged mysql-test/r/rpl_max_relay_size.result: Auto merged mysql-test/r/rpl_reset_slave.result: Auto merged mysql-test/r/rpl_temporary.result: Auto merged mysql-test/r/rpl_until.result: Auto merged mysql-test/r/rpl_user_variables.result: Auto merged mysql-test/r/subselect.result: Auto merged mysql-test/r/union.result: Auto merged mysql-test/r/variables.result: Auto merged mysql-test/t/func_sapdb.test: Auto merged mysql-test/t/mix_innodb_myisam_binlog.test: Auto merged mysql-test/t/mysqlbinlog.test: Auto merged mysql-test/t/rpl_change_master.test: Auto merged mysql-test/t/rpl_log.test: Auto merged mysql-test/t/variables.test: Auto merged netware/BUILD/compile-linux-tools: Auto merged netware/BUILD/compile-netware-END: Auto merged netware/BUILD/compile-netware-all: Auto merged netware/BUILD/compile-netware-standard: Auto merged mysql-test/t/rpl_empty_master_crash.test: Auto merged mysql-test/t/rpl_error_ignored_table.test: Auto merged mysql-test/t/rpl_flush_log_loop.test: Auto merged mysql-test/t/rpl_loaddata.test: Auto merged mysql-test/t/rpl_loaddata_rule_m.test: Auto merged mysql-test/t/rpl_loaddata_rule_s.test: Auto merged mysql-test/t/rpl_max_relay_size.test: Auto merged mysql-test/t/rpl_openssl.test: Auto merged mysql-test/t/rpl_relayrotate-slave.opt: Auto merged mysql-test/t/rpl_reset_slave.test: Auto merged mysql-test/t/rpl_trunc_binlog.test: Auto merged mysql-test/t/rpl_until.test: Auto merged mysql-test/t/rpl_user_variables.test: Auto merged mysql-test/t/subselect.test: Auto merged scripts/make_binary_distribution.sh: Auto merged scripts/mysql_create_system_tables.sh: Auto merged scripts/mysql_fix_privilege_tables.sql: Auto merged scripts/mysql_install_db.sh: Auto merged sql/filesort.cc: Auto merged sql/ha_berkeley.cc: Auto merged sql/ha_berkeley.h: Auto merged sql/ha_innodb.h: Auto merged sql/ha_myisam.cc: Auto merged sql/handler.cc: Auto merged sql/handler.h: Auto merged sql/item.cc: Auto merged sql/item.h: Auto merged sql/item_cmpfunc.cc: Auto merged sql/item_cmpfunc.h: Auto merged sql/item_create.cc: Auto merged sql/item_create.h: Auto merged sql/item_subselect.cc: Auto merged sql/item_sum.cc: Auto merged sql/item_sum.h: Auto merged sql/item_timefunc.h: Auto merged sql/lock.cc: Auto merged sql/log_event.h: Auto merged sql/mysqld.cc: Auto merged sql/net_serv.cc: Auto merged sql/protocol.cc: Auto merged sql/protocol.h: Auto merged sql/repl_failsafe.cc: Auto merged sql/sql_acl.cc: Auto merged sql/sql_acl.h: Auto merged sql/sql_base.cc: Auto merged sql/sql_cache.cc: Auto merged sql/sql_class.h: Auto merged sql/sql_db.cc: Auto merged sql/sql_delete.cc: Auto merged sql/sql_derived.cc: Auto merged sql/sql_lex.h: Auto merged sql/sql_list.h: Auto merged sql/sql_load.cc: Auto merged sql/sql_rename.cc: Auto merged sql/sql_repl.cc: Auto merged sql/sql_repl.h: Auto merged sql/sql_select.cc: Auto merged sql/sql_select.h: Auto merged sql/sql_show.cc: Auto merged sql/sql_table.cc: Auto merged sql/sql_test.cc: Auto merged sql/sql_update.cc: Auto merged sql-common/client.c: Auto merged tests/client_test.c: Auto merged
94 lines
3.1 KiB
Text
94 lines
3.1 KiB
Text
# When the relay log gets rotated while the I/O thread
|
|
# is reading a transaction, the transaction spans on two or more
|
|
# relay logs. If STOP SLAVE occurs while the SQL thread is
|
|
# executing a part of the transaction in the non-first relay logs,
|
|
# we test if START SLAVE will resume in the beginning of the
|
|
# transaction (i.e., step back to the first relay log)
|
|
|
|
# The slave is started with max_binlog_size=16384 bytes,
|
|
# to force many rotations (approximately 30 rotations)
|
|
|
|
# If the master or slave does not support InnoDB, this test will pass
|
|
|
|
source include/master-slave.inc;
|
|
connection slave;
|
|
stop slave;
|
|
connection master;
|
|
--disable_warnings
|
|
create table t1 (a int) engine=innodb;
|
|
--enable_warnings
|
|
let $1=8000;
|
|
disable_query_log;
|
|
begin;
|
|
while ($1)
|
|
{
|
|
# eval means expand $ expressions
|
|
eval insert into t1 values( $1 );
|
|
dec $1;
|
|
}
|
|
commit;
|
|
# This will generate a 500kB master's binlog,
|
|
# which corresponds to 30 slave's relay logs.
|
|
enable_query_log;
|
|
save_master_pos;
|
|
connection slave;
|
|
reset slave;
|
|
start slave;
|
|
# We wait 1 sec for the SQL thread to be somewhere in
|
|
# the middle of the transaction, hopefully not in
|
|
# the first relay log, and hopefully before the COMMIT.
|
|
# Usually it stops when the SQL thread is around the 15th relay log.
|
|
# We cannot use MASTER_POS_WAIT() as master's position
|
|
# increases only when the slave executes the COMMIT.
|
|
# Note that except when using Valgrind, 1 second is enough for the I/O slave
|
|
# thread to fetch the whole master's binlog.
|
|
sleep 1;
|
|
stop slave;
|
|
# We suppose the SQL thread stopped before COMMIT.
|
|
# If so the transaction was rolled back
|
|
# and the table is now empty.
|
|
# Now restart
|
|
start slave;
|
|
# And see if the table contains '8000'
|
|
# which proves that the transaction restarted at
|
|
# the right place.
|
|
# We must wait for the transaction to commit before
|
|
# reading, MASTER_POS_WAIT() will do it for sure
|
|
# (the only statement with position>=3000 is COMMIT).
|
|
select master_pos_wait('master-bin.001',3000)>=0;
|
|
select max(a) from t1;
|
|
--replace_column 1 # 8 # 9 # 23 # 33 #
|
|
--replace_result $MASTER_MYPORT MASTER_MYPORT
|
|
show slave status;
|
|
connection master;
|
|
|
|
# binlog_cache_use and binlog_cache_disk_use status vars test
|
|
# This test uses the previous test. Namely, it needs the long
|
|
# transaction that adds 8000 lines to the t1 table.
|
|
|
|
show status like "binlog_cache_use";
|
|
show status like "binlog_cache_disk_use";
|
|
|
|
# transaction which should not be flushed to disk and so should not
|
|
# increase binlog_cache_disk_use
|
|
begin;
|
|
delete from t1;
|
|
commit;
|
|
|
|
show status like "binlog_cache_use";
|
|
show status like "binlog_cache_disk_use";
|
|
|
|
# The following DROP is a very important cleaning task:
|
|
# imagine the next test is run with --skip-innodb: it will do
|
|
# DROP TABLE IF EXISTS t1; but this will delete the frm and leave
|
|
# some data in the InnoDB datafile (because at that time mysqld
|
|
# does not know about InnoDB : --skip-innodb). So if later in the
|
|
# test suite a test wants to create an InnoDB table called t1, it
|
|
# will fail with
|
|
# InnoDB: Error: table t1 already exists in InnoDB internal
|
|
# InnoDB: data dictionary. Have you deleted the .frm file etc
|
|
drop table t1;
|
|
# wait until this drop is executed on slave
|
|
save_master_pos;
|
|
connection slave;
|
|
sync_with_master;
|