1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-31 22:22:30 +03:00

Fixed 5.0 -> 5.1 merge

This commit is contained in:
malff/marcsql@weblab.(none)
2007-08-20 17:50:42 -06:00
parent a01da34f72
commit c76cd081d8
2 changed files with 8 additions and 1 deletions

View File

@@ -515,3 +515,10 @@ ERROR 42S02: Table 'test.t1' doesn't exist
drop table if exists t1;
Warnings:
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;