mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-03 14:33:32 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			295 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			295 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
connect (con1,localhost,root,,);
 | 
						|
connect (con2,localhost,root,,);
 | 
						|
connection con1;
 | 
						|
dirty_close con1;
 | 
						|
connection con2;
 | 
						|
 | 
						|
--disable_warnings
 | 
						|
drop table if exists t1;
 | 
						|
--enable_warnings
 | 
						|
 | 
						|
create table t1 (n int);
 | 
						|
insert into t1 values (1),(2),(3);
 | 
						|
select * from t1;
 | 
						|
drop table t1;
 | 
						|
 | 
						|
# End of 4.1 tests
 |