mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
3357bc7ea3
Make ENGINE= an alias for TYPE= (Compabiltiy with 4.1) Fix when using symlinked data files and realpath() is not working client/mysqltest.c: Copied mysqltest from 4.1 and modified this to compile in 4.0 This was needed to get replace_columns to work. include/my_sys.h: Stop compiler warnings about alloca on freebsd myisam/mi_check.c: Fix when using symlinked data files and realpath() is not working mysql-test/r/handler.result: test engine= mysql-test/r/rpl_max_relay_size.result: Use replace_columns to replace some 'not constant' columns mysql-test/r/rpl_rotate_logs.result: Use replace_columns to replace some 'not constant' columns mysql-test/r/rpl_trunc_binlog.result: Use replace_columns to replace some 'not constant' columns mysql-test/t/handler.test: test engine= mysql-test/t/rpl_log_pos.test: Use replace_columns to replace some 'not constant' columns mysql-test/t/rpl_max_relay_size.test: Use replace_columns to replace some 'not constant' columns mysql-test/t/rpl_rotate_logs.test: Use replace_columns to replace some 'not constant' columns mysql-test/t/rpl_trunc_binlog.test: Use replace_columns to replace some 'not constant' columns mysys/my_symlink.c: More debugging sql/lex.h: Make ENGINE= an alias for TYPE= sql/mysqld.cc: Code cleanup strings/strto.c: Fix for True64 strings/strtoll.c: Fix for True64 strings/strtoull.c: Remove not needed include file
47 lines
1.2 KiB
Text
47 lines
1.2 KiB
Text
#
|
|
# Testing of setting slave to wrong log position with master_log_pos
|
|
#
|
|
source include/master-slave.inc;
|
|
show master status;
|
|
sync_slave_with_master;
|
|
--replace_result 3306 MASTER_PORT 9306 MASTER_PORT 3334 MASTER_PORT 3336 MASTER_PORT
|
|
--replace_column 1 # 33 #
|
|
show slave status;
|
|
stop slave;
|
|
change master to master_log_pos=73;
|
|
start slave;
|
|
sleep 5;
|
|
stop slave;
|
|
|
|
change master to master_log_pos=73;
|
|
--replace_result 3306 MASTER_PORT 9306 MASTER_PORT 3334 MASTER_PORT 3336 MASTER_PORT
|
|
--replace_column 1 # 33 #
|
|
show slave status;
|
|
start slave;
|
|
sleep 5;
|
|
--replace_result 3306 MASTER_PORT 9306 MASTER_PORT 3334 MASTER_PORT 3336 MASTER_PORT
|
|
--replace_column 1 # 33 #
|
|
show slave status;
|
|
stop slave;
|
|
change master to master_log_pos=173;
|
|
start slave;
|
|
sleep 2;
|
|
--replace_result 3306 MASTER_PORT 9306 MASTER_PORT 3334 MASTER_PORT 3336 MASTER_PORT
|
|
--replace_column 1 # 33 #
|
|
show slave status;
|
|
connection master;
|
|
show master status;
|
|
create table if not exists t1 (n int);
|
|
drop table if exists t1;
|
|
create table t1 (n int);
|
|
insert into t1 values (1),(2),(3);
|
|
save_master_pos;
|
|
connection slave;
|
|
stop slave;
|
|
change master to master_log_pos=79;
|
|
start slave;
|
|
sync_with_master;
|
|
select * from t1;
|
|
connection master;
|
|
drop table t1;
|
|
sync_slave_with_master;
|