diff options
author | unknown <Kristofer.Pettersson@naruto.> | 2006-12-07 17:01:00 +0100 |
---|---|---|
committer | unknown <Kristofer.Pettersson@naruto.> | 2006-12-07 17:01:00 +0100 |
commit | 1267a7fb3c589ab8417e71d32036a1b2410c5c03 (patch) | |
tree | 996755384c967621def827a5254ddb86c448ab21 /mysql-test/r/windows.result | |
parent | b121562b3828682b2cfd94d218bc48698d33b1dd (diff) | |
download | mariadb-git-1267a7fb3c589ab8417e71d32036a1b2410c5c03.tar.gz |
Bug#17498 failed to put data file in custom directory use "data directory" option
- 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.
Diffstat (limited to 'mysql-test/r/windows.result')
-rw-r--r-- | mysql-test/r/windows.result | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mysql-test/r/windows.result b/mysql-test/r/windows.result index 039c5b1476e..1702fd28c18 100644 --- a/mysql-test/r/windows.result +++ b/mysql-test/r/windows.result @@ -6,3 +6,9 @@ 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; |