mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-30 18:36:12 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			245 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			245 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| CREATE TABLE t1 (i int);
 | |
| connect  con1,localhost,root,,test;
 | |
| RENAME TABLE t1 TO t2;
 | |
| connection default;
 | |
| FLUSH TABLES;
 | |
| connection con1;
 | |
| disconnect con1;
 | |
| connection default;
 | |
| DROP TABLE IF EXISTS t1, t2;
 | |
| Warnings:
 | |
| Note	1051	Unknown table 'test.t1'
 | 
