diff options
author | Alexey Botchkov <holyfoot@mysql.com> | 2008-08-23 07:47:43 +0500 |
---|---|---|
committer | Alexey Botchkov <holyfoot@mysql.com> | 2008-08-23 07:47:43 +0500 |
commit | 871201db3d781129d235d9f280e23fcf5be0f39d (patch) | |
tree | ee21c0f34bb510966b5ed546cb41503309d9220a /mysql-test/t/symlink.test | |
parent | dd47146dfa574037b145637501d7e37cb19d8b2d (diff) | |
parent | 69657f972bd1afaabb343ed4ac3c3302b4242eb9 (diff) | |
download | mariadb-git-871201db3d781129d235d9f280e23fcf5be0f39d.tar.gz |
merging
Diffstat (limited to 'mysql-test/t/symlink.test')
-rw-r--r-- | mysql-test/t/symlink.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/t/symlink.test b/mysql-test/t/symlink.test index 7de9f6c6de0..b1bcea470ea 100644 --- a/mysql-test/t/symlink.test +++ b/mysql-test/t/symlink.test @@ -65,7 +65,7 @@ drop table t1; --replace_result $MYSQLTEST_VARDIR MYSQLTEST_VARDIR SHOW CREATE TABLE t9; ---error 1103,1103 +--error 1103, 1103 create table t1 (a int not null auto_increment, b char(16) not null, primary key (a)) engine=myisam data directory="tmp"; # Check that we cannot link over a table from another database. @@ -75,7 +75,7 @@ create database mysqltest; --error 1,1 create table mysqltest.t9 (a int not null auto_increment, b char(16) not null, primary key (a)) engine=myisam index directory="/this-dir-does-not-exist"; ---error 1103,1103 +--error 1103, 1103 create table mysqltest.t9 (a int not null auto_increment, b char(16) not null, primary key (a)) engine=myisam index directory="not-hard-path"; # Should fail becasue the file t9.MYI already exist in 'run' |