summaryrefslogtreecommitdiff
path: root/mysql-test/suite/innodb/r/truncate_missing.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/suite/innodb/r/truncate_missing.result')
-rw-r--r--mysql-test/suite/innodb/r/truncate_missing.result4
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/suite/innodb/r/truncate_missing.result b/mysql-test/suite/innodb/r/truncate_missing.result
index 62a4ef5c552..938bd5f2213 100644
--- a/mysql-test/suite/innodb/r/truncate_missing.result
+++ b/mysql-test/suite/innodb/r/truncate_missing.result
@@ -12,7 +12,7 @@ t CREATE TABLE `t` (
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1
# restart
SELECT * FROM t;
-ERROR 42S02: Table 'test.t' doesn't exist in engine
+ERROR HY000: Got error 194 "Tablespace is missing for a table" from storage engine InnoDB
TRUNCATE TABLE t;
-ERROR 42S02: Table 'test.t' doesn't exist in engine
+ERROR HY000: Got error 194 "Tablespace is missing for a table" from storage engine InnoDB
DROP TABLE t;