diff options
author | svoj@june.mysql.com <> | 2007-11-12 15:26:37 +0400 |
---|---|---|
committer | svoj@june.mysql.com <> | 2007-11-12 15:26:37 +0400 |
commit | 162d70cb024612dfea227dda095c18c184aa9d02 (patch) | |
tree | 416675f554f9510d74bab6b059d70c318873771d /mysql-test/r/symlink.result | |
parent | e2cc172d35253e6ea4d7773bccddd5cca88e9c17 (diff) | |
parent | 5e44309422c181d7ea4513abc47df025e945c421 (diff) | |
download | mariadb-git-162d70cb024612dfea227dda095c18c184aa9d02.tar.gz |
Merge mysql.com:/home/svoj/devel/mysql/BUG32111/mysql-5.0-engines
into mysql.com:/home/svoj/devel/mysql/BUG32111/mysql-5.1-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 aba60f757c6..723674c1dcf 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` ( |