12 lines
664 B
Plaintext
12 lines
664 B
Plaintext
#
|
|
# Bug#19419026 WHEN A TABLESPACE IS NOT FOUND, DO NOT REPORT "TABLE NOT FOUND"
|
|
#
|
|
CREATE DATABASE `..................................................`;
|
|
USE `..................................................`;
|
|
CREATE TABLE `..................................................` (id int) engine=innodb;
|
|
# restart
|
|
select * from `..................................................`;
|
|
ERROR HY000: Tablespace is missing for table `..................................................`.`..................................................`.
|
|
DROP TABLE `..................................................`;
|
|
DROP DATABASE `..................................................`;
|