~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/connect.result

  • Committer: Brian Aker
  • Date: 2010-10-14 18:58:48 UTC
  • mto: This revision was merged to the branch mainline in revision 1854.
  • Revision ID: brian@tangent.org-20101014185848-3alpd72oxyfpornx
This cleans up error messages to state "schema" instead of database.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
show tables;
5
5
Tables_in_test
6
6
connect(localhost,root,z,test2,MASTER_PORT,);
7
 
ERROR 42000: Unknown database 'test2'
 
7
ERROR 42000: Unknown schema 'test2'
8
8
show tables;
9
9
Tables_in_mysql
10
10
show tables;
11
11
Tables_in_test
12
12
connect(localhost,test,,test2,MASTER_PORT,);
13
 
ERROR 42000: Unknown database 'test2'
 
13
ERROR 42000: Unknown schema 'test2'
14
14
connect(localhost,test,,"",MASTER_PORT,);
15
 
ERROR 42000: Unknown database '""'
 
15
ERROR 42000: Unknown schema '""'
16
16
connect(localhost,test,zorro,test2,MASTER_PORT,);
17
 
ERROR 42000: Unknown database 'test2'
 
17
ERROR 42000: Unknown schema 'test2'
18
18
connect(localhost,test,,test2,MASTER_PORT,);
19
 
ERROR 42000: Unknown database 'test2'
 
19
ERROR 42000: Unknown schema 'test2'
20
20
connect(localhost,test,zorro,test2,MASTER_PORT,);
21
 
ERROR 42000: Unknown database 'test2'
 
21
ERROR 42000: Unknown schema 'test2'
22
22
create table t1 (id integer not null auto_increment primary key);
23
23
create temporary table t2(id integer not null auto_increment primary key);
24
24
set @id := 1;