diff options
author | Sergei Golubchik <serg@mariadb.org> | 2015-06-28 08:51:53 +0200 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2015-06-28 12:09:18 +0200 |
commit | 55b96d27089ee809dd0a4c9b3e0e3adb5a731bd4 (patch) | |
tree | 1030a4338db0ca04b3ea0b2e22297e7a974fba14 /mysql-test/r/myisam-system.result | |
parent | d1a11568c7c187b8fb62be92a3276ec0f1a89df9 (diff) | |
download | mariadb-git-55b96d27089ee809dd0a4c9b3e0e3adb5a731bd4.tar.gz |
bump the VERSION to 10.1.6 and related changes
fix two #if MYSQL_VERSION_ID > 100105
Diffstat (limited to 'mysql-test/r/myisam-system.result')
-rw-r--r-- | mysql-test/r/myisam-system.result | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mysql-test/r/myisam-system.result b/mysql-test/r/myisam-system.result index af5de8f2749..e489f87948a 100644 --- a/mysql-test/r/myisam-system.result +++ b/mysql-test/r/myisam-system.result @@ -2,18 +2,18 @@ drop table if exists t1,t2; create table t1 (a int) engine=myisam; drop table if exists t1; Warnings: -Warning 2 Can't find file: './test/t1.MYI' (errno: 2 "No such file or directory") +Warning 1017 Can't find file: './test/t1.MYI' (errno: 2 "No such file or directory") create table t1 (a int) engine=myisam; select * from t1; ERROR HY000: Can't find file: './test/t1.MYI' (errno: 2 "No such file or directory") drop table t1; Warnings: -Warning 2 Can't find file: './test/t1.MYI' (errno: 2 "No such file or directory") +Warning 1017 Can't find file: './test/t1.MYI' (errno: 2 "No such file or directory") create table t1 (a int) engine=myisam; select * from t1; ERROR HY000: File './test/t1.MYD' not found (Errcode: 2 "No such file or directory") drop table t1; Warnings: -Warning 2 Can't find file: './test/t1.MYI' (errno: 2 "No such file or directory") +Warning 1017 Can't find file: './test/t1.MYI' (errno: 2 "No such file or directory") drop table t1; ERROR 42S02: Unknown table 'test.t1' |