1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Fix for bug #2160: Extra error message for CREATE TABLE LIKE with InnoDB

This commit is contained in:
unknown
2004-03-31 14:29:01 +05:00
parent 00967819f3
commit 48014f2288
3 changed files with 10 additions and 1 deletions

View File

@ -1440,3 +1440,6 @@ third
2
3
drop table t1;
create table t1 (a int) engine=innodb;
create table t2 like t1;
drop table t1,t2;