1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-27 18:02:13 +03:00

MDEV-19886 InnoDB returns misleading ER_NO_SUCH_TABLE_IN_ENGINE

A fix in MySQL 5.7.6 was not completely merged to MariaDB:
Bug#19419026 WHEN A TABLESPACE IS NOT FOUND, DO NOT REPORT "TABLE NOT FOUND"
This commit is contained in:
Marko Mäkelä
2019-06-27 15:39:04 +03:00
parent 6d2b236568
commit 92feac53a6
9 changed files with 74 additions and 30 deletions

View File

@ -15,8 +15,8 @@ let $datadir=`select @@datadir`;
--remove_file $datadir/test/t.ibd
--source include/start_mysqld.inc
--error ER_NO_SUCH_TABLE_IN_ENGINE
--error ER_GET_ERRNO
SELECT * FROM t;
--error ER_NO_SUCH_TABLE_IN_ENGINE
--error ER_GET_ERRNO
TRUNCATE TABLE t;
DROP TABLE t;