mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-28 17:15:19 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			435 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			435 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| source include/master-slave.inc;
 | |
| --disable_warnings
 | |
| create database if not exists mysqltest;
 | |
| --enable_warnings
 | |
| 
 | |
| create temporary table mysqltest.t1 (n int);
 | |
| create temporary table mysqltest.t2 (n int);
 | |
| sync_slave_with_master;
 | |
| connection master;
 | |
| disconnect master;
 | |
| connection slave;
 | |
| --real_sleep 3 # time for DROP to be written
 | |
| show status like 'Slave_open_temp_tables';
 | |
| connection default;
 | |
| drop database mysqltest;
 | |
| 
 | |
| # End of 4.1 tests
 | 
