Commit bf350968 authored by unknown's avatar unknown

Fix a test case according to fix for bug#10974.

parent a93e2871
...@@ -6,5 +6,5 @@ drop table t1; ...@@ -6,5 +6,5 @@ drop table t1;
flush tables; flush tables;
CREATE TABLE t1 (a int) ENGINE=INNODB; CREATE TABLE t1 (a int) ENGINE=INNODB;
SELECT * from T1; SELECT * from T1;
ERROR HY000: Can't open file: 'T1.ibd' (errno: 1) ERROR HY000: Got error 1 from storage engine
drop table t1; drop table t1;
...@@ -32,7 +32,7 @@ flush tables; ...@@ -32,7 +32,7 @@ flush tables;
# #
CREATE TABLE t1 (a int) ENGINE=INNODB; CREATE TABLE t1 (a int) ENGINE=INNODB;
--error 1016 --error 1030
SELECT * from T1; SELECT * from T1;
drop table t1; drop table t1;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment