~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/create.result

  • 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:
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