~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/create.result

  • Committer: Lee Bieber
  • Date: 2011-01-12 02:31:03 UTC
  • mfrom: (2068.7.5 session-fix)
  • mto: This revision was merged to the branch mainline in revision 2076.
  • Revision ID: kalebral@gmail.com-20110112023103-nmz26cv1j32jc6n3
Merge Brian - fix bug 527084 - DROP TABLE: getTableDefiniton returns EEXIST but doDropTable returns ENOENT leads to SIGSEGV

Show diffs side-by-side

added added

removed removed

Lines of Context:
1460
1460
) ENGINE=DEFAULT COLLATE = utf8_general_ci
1461
1461
drop table имя_таблицы_в_кодировке_утф8_длиной_больше_чем_48;
1462
1462
create table t1 like data_dictionary.processlist;
1463
 
ERROR HY000: Can't create table 'test.t1' (errno: 1)
 
1463
Got one of the listed errors
1464
1464
create table t1 like data_dictionary.processlist engine=innodb;
1465
1465
show create table t1;
1466
1466
Table   Create Table
1477
1477
) ENGINE=InnoDB COLLATE = utf8_general_ci
1478
1478
drop table t1;
1479
1479
create temporary table t1 like data_dictionary.processlist;
1480
 
ERROR HY000: Can't create table 'test.#t1' (errno: 138)
 
1480
Got one of the listed errors
1481
1481
create temporary table t1 like data_dictionary.processlist engine=myisam;
1482
1482
show create table t1;
1483
1483
Table   Create Table