diff options
author | unknown <Kristofer.Pettersson@naruto.> | 2006-12-10 16:40:15 +0100 |
---|---|---|
committer | unknown <Kristofer.Pettersson@naruto.> | 2006-12-10 16:40:15 +0100 |
commit | c35c8a17d29c86cfed92f0b6d95125bb81eb6ed2 (patch) | |
tree | 4cc838abacde41e317695c9e520803ab7812e358 /mysql-test/t/windows.test | |
parent | 429cf988074f4c1433fcf1930a7a8377e8972ae3 (diff) | |
parent | 1267a7fb3c589ab8417e71d32036a1b2410c5c03 (diff) | |
download | mariadb-git-c35c8a17d29c86cfed92f0b6d95125bb81eb6ed2.tar.gz |
Merge naruto.:C:/cpp/bug17489/my41-bug17489
into naruto.:C:/cpp/bug17489/my50-bug17489
mysql-test/r/windows.result:
Auto merged
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 d6bcfeb8cb3..b5377a9b9b0 100644 --- a/mysql-test/t/windows.test +++ b/mysql-test/t/windows.test @@ -17,4 +17,13 @@ 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 |