~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/include/mix2.inc

  • Committer: Brian Aker
  • Date: 2009-11-18 22:58:22 UTC
  • mto: (1223.1.1 push) (1226.1.2 push)
  • mto: This revision was merged to the branch mainline in revision 1224.
  • Revision ID: brian@gaz-20091118225822-4ryr9rviir23o0kr
Second pass through bugs related to CREATE TABLE LIKE

Show diffs side-by-side

added added

removed removed

Lines of Context:
1012
1012
# Bug#2160: Extra error message for create $temp table LIKE with InnoDB
1013
1013
#
1014
1014
eval create $temp table t1 (a int) engine=$engine_type;
 
1015
--error 1005
1015
1016
create table t2 like t1;
 
1017
create table t2 like t1 engine=innodb;
1016
1018
show create table t2;
1017
1019
drop table t1,t2;
1018
1020