diff options
author | unknown <Kristofer.Pettersson@naruto.> | 2006-12-11 12:33:42 +0100 |
---|---|---|
committer | unknown <Kristofer.Pettersson@naruto.> | 2006-12-11 12:33:42 +0100 |
commit | 4c40881d584eaf693e0b37267d458156824fc700 (patch) | |
tree | 08b186dddc0fdf08ca30c24e3dcc59146262bf6a /mysql-test/r/windows.result | |
parent | ad79ac64b8fbcefcd3dc10c3de769a6479f1eeb3 (diff) | |
download | mariadb-git-4c40881d584eaf693e0b37267d458156824fc700.tar.gz |
Bug#17489 failed to put data file in custom directory use "data directory" option
- Updated result file to fit test case automerge.
mysql-test/r/windows.result:
Updated result file to fit automerge.
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 e8c3c81a44e..7472b724f47 100644 --- a/mysql-test/r/windows.result +++ b/mysql-test/r/windows.result @@ -6,6 +6,12 @@ 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; create procedure proc_1() install plugin my_plug soname '\\root\\some_plugin.dll'; call proc_1(); ERROR HY000: No paths allowed for shared library |