diff options
author | unknown <Kristofer.Pettersson@naruto.> | 2006-12-10 17:01:27 +0100 |
---|---|---|
committer | unknown <Kristofer.Pettersson@naruto.> | 2006-12-10 17:01:27 +0100 |
commit | ad79ac64b8fbcefcd3dc10c3de769a6479f1eeb3 (patch) | |
tree | 4db2fbc57676055ea795fed5597ad0c47c370138 /mysql-test/t/windows.test | |
parent | e669bcd6a950b7a2e565c2b743f36638461602e7 (diff) | |
parent | c35c8a17d29c86cfed92f0b6d95125bb81eb6ed2 (diff) | |
download | mariadb-git-ad79ac64b8fbcefcd3dc10c3de769a6479f1eeb3.tar.gz |
Merge naruto.:C:/cpp/bug17489/my50-bug17489
into naruto.:C:/cpp/bug17489/my51-bug17489
mysql-test/t/windows.test:
Auto merged
sql/sql_parse.cc:
Auto merged
Diffstat (limited to 'mysql-test/t/windows.test')
-rw-r--r-- | mysql-test/t/windows.test | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/mysql-test/t/windows.test b/mysql-test/t/windows.test index 4dab646df2c..a10d54b5452 100644 --- a/mysql-test/t/windows.test +++ b/mysql-test/t/windows.test @@ -17,6 +17,15 @@ use prn; 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 # |