~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/connect.test

  • Committer: Lee Bieber
  • Date: 2010-08-21 22:42:44 UTC
  • mto: (1727.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 1728.
  • Revision ID: lbieber@kalebral-2.local-20100821224244-kh3gmsvi45dlbuu1
For the feature request (https://blueprints.launchpad.net/drizzle/+spec/limit-maximum-sort-size) 
that is requesting the ability to cap various buffers, we first tried setting the join buffer to 
1 to see how that would affect the test results and expose test results that need to 
sorted (by adding --sorted_result). 

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
show tables;
16
16
 
17
17
--replace_result $MASTER_MYSOCK MASTER_SOCKET $MASTER_MYPORT MASTER_PORT
18
 
--error ER_BAD_DB_ERROR
 
18
--error 1049
19
19
connect (fail_con,localhost,root,z,test2);
20
20
--replace_result $MASTER_MYSOCK MASTER_SOCKET $MASTER_MYPORT MASTER_PORT
21
21
connect (fail_con,localhost,root,z,);
30
30
show tables;
31
31
 
32
32
--replace_result $MASTER_MYSOCK MASTER_SOCKET $MASTER_MYPORT MASTER_PORT
33
 
--error ER_BAD_DB_ERROR
 
33
--error 1049
34
34
connect (fail_con,localhost,test,,test2);
35
35
--replace_result $MASTER_MYSOCK MASTER_SOCKET $MASTER_MYPORT MASTER_PORT
36
 
--error ER_BAD_DB_ERROR
 
36
--error 1049
37
37
connect (fail_con,localhost,test,,"");
38
38
--replace_result $MASTER_MYSOCK MASTER_SOCKET $MASTER_MYPORT MASTER_PORT
39
 
--error ER_BAD_DB_ERROR
 
39
--error 1049
40
40
connect (fail_con,localhost,test,zorro,test2);
41
41
--replace_result $MASTER_MYSOCK MASTER_SOCKET $MASTER_MYPORT MASTER_PORT
42
42
connect (fail_con,localhost,test,zorro,);
45
45
 
46
46
 
47
47
--replace_result $MASTER_MYSOCK MASTER_SOCKET $MASTER_MYPORT MASTER_PORT
48
 
--error ER_BAD_DB_ERROR
 
48
--error 1049
49
49
connect (fail_con,localhost,test,,test2);
50
50
--replace_result $MASTER_MYSOCK MASTER_SOCKET $MASTER_MYPORT MASTER_PORT
51
51
connect (fail_con,localhost,test,,);
52
52
--disconnect fail_con
53
53
--replace_result $MASTER_MYSOCK MASTER_SOCKET $MASTER_MYPORT MASTER_PORT
54
 
--error ER_BAD_DB_ERROR
 
54
--error 1049
55
55
connect (fail_con,localhost,test,zorro,test2);
56
56
--replace_result $MASTER_MYSOCK MASTER_SOCKET $MASTER_MYPORT MASTER_PORT
57
57
connect (fail_con,localhost,test,zorro,);