~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/create.test

  • Committer: Brian Aker
  • Date: 2011-01-11 05:13:54 UTC
  • mto: (2075.2.1 drizzle)
  • mto: This revision was merged to the branch mainline in revision 2076.
  • Revision ID: brian@tangent.org-20110111051354-m8ba2xvtjfldrler
First pass through error correction in SE interface for drop table.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1213
1213
#
1214
1214
# Bug#25629 CREATE TABLE LIKE does not work with INFORMATION_SCHEMA
1215
1215
#
1216
 
--error ER_CANT_CREATE_TABLE
 
1216
--error ER_CANT_CREATE_TABLE,ER_TABLE_PERMISSION_DENIED
1217
1217
create table t1 like data_dictionary.processlist;
1218
1218
create table t1 like data_dictionary.processlist engine=innodb;
1219
1219
show create table t1;
1220
1220
drop table t1;
1221
 
--error ER_CANT_CREATE_TABLE
 
1221
--error ER_CANT_CREATE_TABLE,ER_TABLE_PERMISSION_DENIED
1222
1222
create temporary table t1 like data_dictionary.processlist;
1223
1223
create temporary table t1 like data_dictionary.processlist engine=myisam;
1224
1224
show create table t1;