mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-03 14:33:32 +03:00 
			
		
		
		
	- Using DATA/INDEX DIRECTORY option on Windows put data/index file into default directory because the OS doesn't support readlink(). - The procedure for changing data/index file directory is different under Windows. - With this fix we report a warning if DATA/INDEX option is used, but OS doesn't support readlink().
		
			
				
	
	
		
			30 lines
		
	
	
		
			529 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			529 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
# Windows-specific tests
 | 
						|
--source include/windows.inc
 | 
						|
 | 
						|
#
 | 
						|
# Bug 9148: Denial of service
 | 
						|
#
 | 
						|
--error 1049
 | 
						|
use lpt1;
 | 
						|
--error 1049
 | 
						|
use com1;
 | 
						|
--error 1049
 | 
						|
use prn;
 | 
						|
 | 
						|
#
 | 
						|
# Bug #12325: Can't create table named 'nu'
 | 
						|
#
 | 
						|
create table nu (a int);
 | 
						|
drop table nu;
 | 
						|
 | 
						|
#
 | 
						|
# Bug17489: ailed to put data file in custom directory use "data directory" option
 | 
						|
#
 | 
						|
--disable_warnings
 | 
						|
drop table if exists t1;
 | 
						|
--enable_warnings
 | 
						|
CREATE TABLE t1 ( `ID` int(6) ) data directory 'c:/tmp/' index directory 'c:/tmp/' engine=MyISAM;
 | 
						|
drop table t1;
 | 
						|
 | 
						|
# End of 4.1 tests
 |