mirror of
https://github.com/MariaDB/server.git
synced 2025-01-27 01:04:19 +01:00
32 lines
1,000 B
Text
32 lines
1,000 B
Text
stop slave;
|
|
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
|
reset master;
|
|
reset slave;
|
|
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
|
start slave;
|
|
call mtr.add_suppression ("Slave I/O: Got fatal error 1236 from master when reading data from binary");
|
|
show master status;
|
|
File Position Binlog_Do_DB Binlog_Ignore_DB
|
|
master-bin.000001 # <Binlog_Do_DB> <Binlog_Ignore_DB>
|
|
include/stop_slave.inc
|
|
change master to master_log_pos=MASTER_LOG_POS;
|
|
Read_Master_Log_Pos 75
|
|
start slave;
|
|
Last_IO_Error = Got fatal error 1236 from master when reading data from binary log: 'binlog truncated in the middle of event'
|
|
include/stop_slave.inc
|
|
show master status;
|
|
File Position Binlog_Do_DB Binlog_Ignore_DB
|
|
master-bin.000001 # <Binlog_Do_DB> <Binlog_Ignore_DB>
|
|
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);
|
|
change master to master_log_pos=MASTER_LOG_POS;
|
|
start slave;
|
|
select * from t1 ORDER BY n;
|
|
n
|
|
1
|
|
2
|
|
3
|
|
drop table t1;
|
|
End of 5.0 tests
|