~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/mysql_bug2397.result

  • Committer: brian
  • Date: 2008-06-25 05:29:13 UTC
  • Revision ID: brian@localhost.localdomain-20080625052913-6upwo0jsrl4lnapl
clean slate

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
CREATE TABLE t1 (a int);
2
 
CREATE TABLE t3 (a int);
3
 
FLUSH TABLES WITH READ LOCK;
4
 
RENAME TABLE t1 TO t2, t3 to t4;
5
 
show tables;
6
 
Tables_in_test
7
 
t1
8
 
t3
9
 
UNLOCK TABLES;
10
 
show tables;
11
 
Tables_in_test
12
 
t2
13
 
t4
14
 
drop table t2, t4;