diff options
author | svoj@june.mysql.com <> | 2007-11-12 15:16:00 +0400 |
---|---|---|
committer | svoj@june.mysql.com <> | 2007-11-12 15:16:00 +0400 |
commit | 5e44309422c181d7ea4513abc47df025e945c421 (patch) | |
tree | d6db35fefc5e9feede999e66574f618f6b6ce3df /mysql-test/r/symlink.result | |
parent | 0c9c041fdec1a04e0c452720679442ff3f7c23b8 (diff) | |
parent | 40a78cd3900d72e76edf0e7d9b83b26f1a55811c (diff) | |
download | mariadb-git-5e44309422c181d7ea4513abc47df025e945c421.tar.gz |
Merge mysql.com:/home/svoj/devel/mysql/BUG32111/mysql-4.1-engines
into mysql.com:/home/svoj/devel/mysql/BUG32111/mysql-5.0-engines
Diffstat (limited to 'mysql-test/r/symlink.result')
-rw-r--r-- | mysql-test/r/symlink.result | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mysql-test/r/symlink.result b/mysql-test/r/symlink.result index 18299bf4298..8978eee89c3 100644 --- a/mysql-test/r/symlink.result +++ b/mysql-test/r/symlink.result @@ -99,6 +99,12 @@ t1 CREATE TABLE `t1` ( `b` int(11) default NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1 drop table t1; +CREATE TABLE t1(a INT) +DATA DIRECTORY='TEST_DIR/var/master-data/mysql' +INDEX DIRECTORY='TEST_DIR/var/master-data/mysql'; +RENAME TABLE t1 TO user; +ERROR HY000: Can't create/write to file 'TEST_DIR/var/master-data/mysql/user.MYI' (Errcode: 17) +DROP TABLE t1; show create table t1; Table Create Table t1 CREATE TABLE `t1` ( |