diff options
author | Sergey Glukhov <Sergey.Glukhov@sun.com> | 2009-09-17 16:33:23 +0500 |
---|---|---|
committer | Sergey Glukhov <Sergey.Glukhov@sun.com> | 2009-09-17 16:33:23 +0500 |
commit | 2535ede7138cb4d1e8986d18b4154c377ba37f3f (patch) | |
tree | e52481eb1f8631f34adad7f5545de3e9c30af286 /mysql-test/t/myisam-system.test | |
parent | 7cf8f7a4bb465eca331fb08568127eadb709a4a2 (diff) | |
download | mariadb-git-2535ede7138cb4d1e8986d18b4154c377ba37f3f.tar.gz |
Bug#42364 SHOW ERRORS returns empty resultset after dropping non existent table
additional backport of of bug43138 fix
mysql-test/t/myisam-system.test:
additional backport of of bug43138 fix
sql/sql_db.cc:
additional backport of of bug43138 fix
Diffstat (limited to 'mysql-test/t/myisam-system.test')
-rw-r--r-- | mysql-test/t/myisam-system.test | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mysql-test/t/myisam-system.test b/mysql-test/t/myisam-system.test index dc5bb58b6a2..d908e639a4e 100644 --- a/mysql-test/t/myisam-system.test +++ b/mysql-test/t/myisam-system.test @@ -12,11 +12,11 @@ let $MYSQLD_DATADIR= `select @@datadir`; drop table if exists t1; create table t1 (a int) engine=myisam; --remove_file $MYSQLD_DATADIR/test/t1.MYI ---error 1051,6 +--error ER_BAD_TABLE_ERROR,6 drop table t1; create table t1 (a int) engine=myisam; --remove_file $MYSQLD_DATADIR/test/t1.MYD ---error 1105,6,29 +--error ER_BAD_TABLE_ERROR,6,29 drop table t1; ---error 1051 +--error ER_BAD_TABLE_ERROR drop table t1; |