~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/mysql_bug2397.result

code clean move Item_func_abs, Item_func_int_exp, Item_func_ln, Item_func_log to functions directory

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;