mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-03 14:33:32 +03:00 
			
		
		
		
	tmpdir has uppercase Fix: don't convert mysql_tmpdir to lower case when building the path to a temporary table
		
			
				
	
	
		
			13 lines
		
	
	
		
			305 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			305 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
--source include/have_case_sensitive_file_system.inc
 | 
						|
--source include/have_lowercase1.inc
 | 
						|
 | 
						|
--disable_warnings
 | 
						|
drop table if exists t1;
 | 
						|
--enable_warnings
 | 
						|
 | 
						|
create table t1 (id int) engine=myisam;
 | 
						|
insert into t1 values (1);
 | 
						|
create temporary table t2 select * from t1;
 | 
						|
drop temporary table t2;
 | 
						|
drop table t1;
 |