mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-03 20:36:16 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			371 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			371 B
		
	
	
	
		
			Text
		
	
	
	
	
	
create table d1 (a int);
 | 
						|
create temporary table t1 (a int);
 | 
						|
create temporary table t2 (a int);
 | 
						|
Got one of the listed errors
 | 
						|
create temporary table t3 (a int) engine=Aria;
 | 
						|
Got one of the listed errors
 | 
						|
select * from information_schema.columns where table_schema='test';
 | 
						|
Got one of the listed errors
 | 
						|
flush tables;
 | 
						|
select * from d1;
 | 
						|
a
 | 
						|
drop temporary table t1;
 | 
						|
drop table d1;
 |