~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/drop.result

  • Committer: Brian Aker
  • Date: 2010-03-27 04:12:14 UTC
  • mfrom: (1395.1.18 build)
  • Revision ID: brian@gaz-20100327041214-2pm5eay51312xjvq
Merge (fixes known issues in ALTER TABLE not resetting correctly DFE).

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 't1' already exists
 
11
ERROR 42S01: Table 'test.t1' already exists
12
12
drop table t1;
13
13
select * from t1;
14
14
n