~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/connect.result

  • Committer: Jay Pipes
  • Date: 2009-09-15 21:01:42 UTC
  • mto: (1126.2.5 merge)
  • mto: This revision was merged to the branch mainline in revision 1128.
  • Revision ID: jpipes@serialcoder-20090915210142-x8mwiqn1q0vzjspp
Moves Alter_info out into its own header and source file, cleans up some related include mess in sql_lex.h, and renames Alter_info to AlterInfo.

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 schema 'test2'
 
7
ERROR 42000: Unknown database '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 schema 'test2'
 
13
ERROR 42000: Unknown database 'test2'
14
14
connect(localhost,test,,"",MASTER_PORT,);
15
 
ERROR 42000: Unknown schema '""'
 
15
ERROR 42000: Unknown database '""'
16
16
connect(localhost,test,zorro,test2,MASTER_PORT,);
17
 
ERROR 42000: Unknown schema 'test2'
 
17
ERROR 42000: Unknown database 'test2'
18
18
connect(localhost,test,,test2,MASTER_PORT,);
19
 
ERROR 42000: Unknown schema 'test2'
 
19
ERROR 42000: Unknown database 'test2'
20
20
connect(localhost,test,zorro,test2,MASTER_PORT,);
21
 
ERROR 42000: Unknown schema 'test2'
 
21
ERROR 42000: Unknown database '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;