mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-31 10:56:12 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
	
		
			352 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			352 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| #
 | |
| # MDEV-16123 ASAN heap-use-after-free handler::ha_index_or_rnd_end
 | |
| # MDEV-13828 Segmentation fault on RENAME TABLE
 | |
| #
 | |
| 
 | |
| CREATE TABLE t1 (i int);
 | |
| --connect (con1,localhost,root,,test)
 | |
| --send
 | |
| RENAME TABLE t1 TO t2;
 | |
| --connection default
 | |
| FLUSH TABLES;
 | |
| --connection con1
 | |
| --reap
 | |
| 
 | |
| # Cleanup
 | |
| --disconnect con1
 | |
| --connection default
 | |
| DROP TABLE IF EXISTS t1, t2;
 | 
