mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-31 02:46:29 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			37 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
| include/master-slave.inc
 | |
| [connection master]
 | |
| create table if not exists t1 (n int);
 | |
| drop table t1;
 | |
| call mtr.add_suppression ("Slave I/O: Got fatal error 1236 from master when reading data from binary");
 | |
| call mtr.add_suppression ("Error in Log_event::read_log_event");
 | |
| show master status;
 | |
| File	Position	Binlog_Do_DB	Binlog_Ignore_DB
 | |
| master-bin.000001	#	<Binlog_Do_DB>	<Binlog_Ignore_DB>
 | |
| connection slave;
 | |
| include/stop_slave.inc
 | |
| change master to master_log_pos=MASTER_LOG_POS;
 | |
| start slave;
 | |
| include/wait_for_slave_io_error.inc [errno=1236]
 | |
| Last_IO_Error = 'Got fatal error 1236 from master when reading data from binary log: 'binlog truncated in the middle of event; consider out of disk space on master; the first event 'master-bin.000001' at XXX, the last event read from 'master-bin.000001' at XXX, the last byte read from 'master-bin.000001' at XXX.''
 | |
| include/stop_slave_sql.inc
 | |
| connection master;
 | |
| 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);
 | |
| connection slave;
 | |
| change master to master_log_pos=MASTER_LOG_POS;
 | |
| start slave;
 | |
| select * from t1 ORDER BY n;
 | |
| n
 | |
| 1
 | |
| 2
 | |
| 3
 | |
| connection master;
 | |
| drop table t1;
 | |
| connection slave;
 | |
| End of 5.0 tests
 | |
| include/rpl_end.inc
 | 
