mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-30 04:26:45 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			380 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			380 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| #################################
 | |
| # Test updated to use a wrapper #
 | |
| #################################
 | |
| 
 | |
| eval CREATE TABLE t1 (a INT) ENGINE=$engine_type;
 | |
| 
 | |
| begin;
 | |
| insert into t1 values(1);
 | |
| flush tables with read lock;
 | |
| commit;
 | |
| save_master_pos;
 | |
| connection slave;
 | |
| sync_with_master;
 | |
| # cleanup
 | |
| connection master;
 | |
| unlock tables;
 | |
| drop table t1;
 | |
| sync_slave_with_master;
 | |
| 
 | |
| # End of 4.1 tests
 | 
