mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-31 15:50:51 +03:00 
			
		
		
		
	MDEV 15105 "Bytes lost and Assertion `global_status_var.global_memory_used == 0' fails on shutdown after attempts to LOCK/RENAME sequence"
		
			
				
	
	
		
			7 lines
		
	
	
		
			162 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
		
			162 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| 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;
 |