mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-31 15:50:51 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			224 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			224 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| DROP TABLE IF EXISTS t1,T1;
 | |
| CREATE TABLE t1 (a int);
 | |
| SELECT * from T1;
 | |
| a
 | |
| drop table t1;
 | |
| flush tables;
 | |
| CREATE TABLE t1 (a int) ENGINE=INNODB;
 | |
| SELECT * from T1;
 | |
| ERROR HY000: Can't open file: 'T1.ibd' (errno: 1)
 | |
| drop table t1;
 | 
