~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/drop.result

  • Committer: Stewart Smith
  • Date: 2010-03-15 04:42:26 UTC
  • mto: (1283.38.1)
  • mto: This revision was merged to the branch mainline in revision 1475.
  • Revision ID: stewart@flamingspork.com-20100315044226-q74o953r9h98brm4
basic embedded innodb DATA_DICTIONARY.INNODB_CONFIGURATION test

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
create temporary table t1( n int);
9
9
insert into t1 values(2);
10
10
create table t1(n int);
11
 
ERROR 42S01: Table 'test.t1' already exists
 
11
ERROR 42S01: Table 't1' already exists
12
12
drop table t1;
13
13
select * from t1;
14
14
n
63
63
mysql
64
64
test
65
65
drop database mysqltest;
66
 
ERROR HY000: Can't drop database 'mysqltest'; database doesn't exist
 
66
ERROR HY000: Can't drop database './mysqltest/'; database doesn't exist
67
67
drop table t1;
68
68
flush tables with read lock;
69
69
create table t1(n int);