summaryrefslogtreecommitdiff
path: root/mysql-test/suite/innodb/r/missing_tablespaces.result
blob: 11b792734982541d0958320c911dcc153fa6fd18 (plain)
1
2
3
4
5
6
7
8
9
10
11
#
# Bug#19419026 WHEN A TABLESPACE IS NOT FOUND, DO NOT REPORT "TABLE NOT FOUND"
#
CREATE DATABASE `..................................................`;
USE `..................................................`;
CREATE TABLE `..................................................` (ID INT)
ENGINE=INNODB;
select * from `..................................................`;
ERROR HY000: Got error 194 "Tablespace is missing for a table" from storage engine InnoDB
DROP TABLE `..................................................`;
DROP DATABASE `..................................................`;