~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/create.test

Remove processlist from old I_S.

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
1211
 
create table t1 like information_schema.old_processlist;
1212
 
create table t1 like information_schema.old_processlist engine=innodb;
 
1210
--error 1005
 
1211
create table t1 like data_dictionary.processlist;
 
1212
create table t1 like data_dictionary.processlist engine=innodb;
1213
1213
show create table t1;
1214
1214
drop table t1;
1215
 
--error 1478
1216
 
create temporary table t1 like information_schema.old_processlist;
1217
 
create temporary table t1 like information_schema.old_processlist engine=myisam;
 
1215
--error 1005
 
1216
create temporary table t1 like data_dictionary.processlist;
 
1217
create temporary table t1 like data_dictionary.processlist engine=myisam;
1218
1218
show create table t1;
1219
1219
drop table t1;
1220
1220