~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/create.test

  • Committer: Brian Aker
  • Date: 2011-01-12 02:29:00 UTC
  • mfrom: (2068.7.5 session-fix)
  • mto: This revision was merged to the branch mainline in revision 2077.
  • Revision ID: brian@gir-3-20110112022900-ash0in3luysxzpvl
MergeĀ inĀ trunk.

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;