~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/mysql_bug2397.result

  • Committer: Brian Aker
  • Date: 2010-05-27 01:25:56 UTC
  • mfrom: (1567.1.4 new-staging)
  • Revision ID: brian@gaz-20100527012556-5zgkirkl7swbigd6
Merge of Brian, Paul. PBXT compile issue, and test framework cleanup. 

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;