mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-31 15:50:51 +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().
mysql-test/r/windows.result:
  - updated result file.
mysql-test/t/windows.test:
  - Added test case to verify we get warnings if we specify DATA/INDEX
    DIRECTORY on a platform which doesn't support readlink().
sql/sql_parse.cc:
  - Added warnings if DATA/INDEX DIRECTORY option is used but not supported
    by the target platform.
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			408 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			408 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| use lpt1;
 | |
| ERROR 42000: Unknown database 'lpt1'
 | |
| use com1;
 | |
| ERROR 42000: Unknown database 'com1'
 | |
| use prn;
 | |
| ERROR 42000: Unknown database 'prn'
 | |
| create table nu (a int);
 | |
| drop table nu;
 | |
| drop table if exists t1;
 | |
| CREATE TABLE t1 ( `ID` int(6) ) data directory 'c:/tmp/' index directory 'c:/tmp/' engine=MyISAM;
 | |
| Warnings:
 | |
| Warning	0	DATA DIRECTORY option ignored
 | |
| Warning	0	INDEX DIRECTORY option ignored
 | |
| drop table t1;
 |