~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/connect.test

  • Committer: Brian Aker
  • Date: 2010-02-14 01:56:51 UTC
  • mto: (1273.16.5 fix_is)
  • mto: This revision was merged to the branch mainline in revision 1300.
  • Revision ID: brian@gaz-20100214015651-ror9j0xu7dccz0ct
Two fixes for "make dist"

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,);
69
69
set @id := 1;
70
70
delete from t1 where id like @id;
71
71
disconnect con7;
72
 
--sleep 0.5
 
72
--sleep 5
73
73
connection default;
74
74
drop table t1;
75
75