~drizzle-trunk/drizzle/development

1 by brian
clean slate
1
drop table if exists t1,t2;
2
show tables;
3
Tables_in_mysql
722.2.16 by Monty Taylor
Fixed connect.test.
4
show tables;
5
Tables_in_test
6
connect(localhost,root,z,test2,MASTER_PORT,);
7
ERROR 42000: Unknown database 'test2'
8
show tables;
9
Tables_in_mysql
10
show tables;
11
Tables_in_test
12
connect(localhost,test,,test2,MASTER_PORT,);
13
ERROR 42000: Unknown database 'test2'
14
connect(localhost,test,,"",MASTER_PORT,);
15
ERROR 42000: Unknown database '""'
16
connect(localhost,test,zorro,test2,MASTER_PORT,);
17
ERROR 42000: Unknown database 'test2'
18
connect(localhost,test,,test2,MASTER_PORT,);
19
ERROR 42000: Unknown database 'test2'
20
connect(localhost,test,zorro,test2,MASTER_PORT,);
21
ERROR 42000: Unknown database 'test2'
1 by brian
clean slate
22
create table t1 (id integer not null auto_increment primary key);
23
create temporary table t2(id integer not null auto_increment primary key);
24
set @id := 1;
25
delete from t1 where id like @id;
26
drop table t1;
27
# ------------------------------------------------------------------
28
# -- End of 4.1 tests
29
# ------------------------------------------------------------------
30
# ------------------------------------------------------------------
31
# -- End of 5.1 tests
32
# ------------------------------------------------------------------