~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/mysql_bug2397.result

  • Committer: Monty Taylor
  • Date: 2008-12-18 07:24:54 UTC
  • mto: This revision was merged to the branch mainline in revision 714.
  • Revision ID: monty@bitters-20081218072454-8pnep622damjgqli
Fixed one more my_time thing.

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;