mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-04 12:56:14 +01:00 
			
		
		
		
	MDEV 15105 "Bytes lost and Assertion `global_status_var.global_memory_used == 0' fails on shutdown after attempts to LOCK/RENAME sequence"
		
			
				
	
	
		
			6 lines
		
	
	
	
		
			162 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			6 lines
		
	
	
	
		
			162 B
		
	
	
	
		
			Text
		
	
	
	
	
	
CREATE SEQUENCE seq1;
 | 
						|
RENAME TABLE seq1 TO seq2, seq3 TO seq4;
 | 
						|
ERROR 42S02: Table 'test.seq3' doesn't exist
 | 
						|
LOCK TABLE seq1 READ;
 | 
						|
UNLOCK TABLES;
 | 
						|
drop table seq1;
 |