Commit 5f40dafc authored by unknown's avatar unknown

Fixed 5.0 -> 5.1 merge

parent 8d201090
...@@ -471,7 +471,7 @@ drop table if exists t1; ...@@ -471,7 +471,7 @@ drop table if exists t1;
--disable_warnings --disable_warnings
drop table if exists t1; drop table if exists t1;
--enable_warnings --enable_warnings
create table t1 (a int) ENGINE=MEMORY; eval create table t1 (a int) ENGINE=$other_engine_type;
--echo --> client 2 --echo --> client 2
connection con2; connection con2;
--error 1031 --error 1031
......
...@@ -515,3 +515,10 @@ ERROR 42S02: Table 'test.t1' doesn't exist ...@@ -515,3 +515,10 @@ ERROR 42S02: Table 'test.t1' doesn't exist
drop table if exists t1; drop table if exists t1;
Warnings: Warnings:
Note 1051 Unknown table 't1' Note 1051 Unknown table 't1'
drop table if exists t1;
create table t1 (a int) ENGINE=MEMORY;
--> client 2
handler t1 open;
ERROR HY000: Table storage engine for 't1' doesn't have this option
--> client 1
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