mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-04 04:46:15 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
	
		
			242 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			242 B
		
	
	
	
		
			Text
		
	
	
	
	
	
#
 | 
						|
# MDEV-4480 Assertion `inited == NONE' fails on closing a connection with open handler on temporary table
 | 
						|
#
 | 
						|
 | 
						|
--connect (con1,localhost,root,,)
 | 
						|
create temporary table t1 as select 1;
 | 
						|
handler t1 open;
 | 
						|
handler t1 read next;
 | 
						|
--disconnect con1
 | 
						|
 |