~stewart/drizzle/seapitester-state-history

« back to all changes in this revision

Viewing changes to tests/t/create.test

  • Committer: Lee Bieber
  • Date: 2011-01-12 04:30:24 UTC
  • mfrom: (2075.1.3 build)
  • Revision ID: kalebral@gmail.com-20110112043024-zgws6jzd54oym9um
Merge Brian - fix bug 527084 - DROP TABLE: getTableDefiniton returns EEXIST but doDropTable returns ENOENT leads to SIGSEGV
Merge Shrews - fix bug 686781 - Transaction message segmenting does not work in all cases 
Merge Stewart - fix bug 376299: sum_distinct-big test fails after resetting max_heap_table_size

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;