mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-31 19:06:14 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			513 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			513 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| include/master-slave.inc
 | |
| [connection master]
 | |
| connection master;
 | |
| CREATE TABLE t1 (a INT, b INT);
 | |
| INSERT INTO t1 VALUES (1,10);
 | |
| connection slave;
 | |
| connection master;
 | |
| LOAD DATA INFILE '../../std_data/rpl_loaddata.dat' INTO TABLE t1;
 | |
| connection slave;
 | |
| call mtr.add_suppression("Slave SQL.*Fatal error: Not enough memory, error.* 1593");
 | |
| include/wait_for_slave_sql_error_and_skip.inc [errno=1593]
 | |
| Last_SQL_Error = 'Fatal error: Not enough memory'
 | |
| connection master;
 | |
| DROP TABLE t1;
 | |
| connection slave;
 | |
| include/rpl_end.inc
 | 
