diff options
author | unknown <thek@kpdesk.mysql.com> | 2006-12-14 13:45:17 +0100 |
---|---|---|
committer | unknown <thek@kpdesk.mysql.com> | 2006-12-14 13:45:17 +0100 |
commit | e91334334e83617859c308e9a8f5f99ec34c80da (patch) | |
tree | bdb8ae8868270ddf13db7908f1e3a7048aaa131e /mysql-test/r/myisam.result | |
parent | d2b950f00663e46f4a7abc7686229f2a64e41e69 (diff) | |
download | mariadb-git-e91334334e83617859c308e9a8f5f99ec34c80da.tar.gz |
Bug#17498 failed to put data file in custom directory use "data directory" option
Merged 4.1->5.0. Updated myisam.test
mysql-test/r/myisam.result:
updated result file
mysql-test/t/myisam.test:
Removing symlink specific test from myisam test
Diffstat (limited to 'mysql-test/r/myisam.result')
-rw-r--r-- | mysql-test/r/myisam.result | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/mysql-test/r/myisam.result b/mysql-test/r/myisam.result index 2ea317754ec..b9e656de6be 100644 --- a/mysql-test/r/myisam.result +++ b/mysql-test/r/myisam.result @@ -1608,16 +1608,3 @@ create table t3 (c1 int) engine=myisam pack_keys=default; create table t4 (c1 int) engine=myisam pack_keys=2; ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '2' at line 1 drop table t1, t2, t3; -show create table t1; -show create table t1; -create table t1 (a int) engine=myisam select 42 a; -select * from t1; -a -9 -select * from t1; -a -99 -select * from t1; -a -42 -drop table t1; |