~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/create.test

  • Committer: Brian Aker
  • Date: 2009-11-18 03:04:25 UTC
  • mto: This revision was merged to the branch mainline in revision 1222.
  • Revision ID: brian@gaz-20091118030425-ezceti6llrwg464p
Updated fix for create table like.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1207
1207
#
1208
1208
# Bug#25629 CREATE TABLE LIKE does not work with INFORMATION_SCHEMA
1209
1209
#
 
1210
--error 1478
1210
1211
create table t1 like information_schema.processlist;
 
1212
create table t1 like information_schema.processlist engine=innodb;
1211
1213
show create table t1;
1212
1214
drop table t1;
 
1215
--error 1478
1213
1216
create temporary table t1 like information_schema.processlist;
 
1217
create temporary table t1 like information_schema.processlist engine=myisam;
1214
1218
show create table t1;
1215
1219
drop table t1;
1216
1220