~ubuntu-branches/ubuntu/precise/mysql-5.1/precise

« back to all changes in this revision

Viewing changes to mysql-test/suite/rpl/r/rpl_ssl.result

  • Committer: Bazaar Package Importer
  • Author(s): Chuck Short
  • Date: 2010-06-21 15:31:05 UTC
  • mfrom: (1.1.3 upstream)
  • mto: This revision was merged to the branch mainline in revision 6.
  • Revision ID: james.westby@ubuntu.com-20100621153105-pbbz3t6nyrf9t2zq
Tags: upstream-5.1.48
ImportĀ upstreamĀ versionĀ 5.1.48

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
select * from t1;
20
20
t
21
21
1
22
 
show slave status;
23
 
Slave_IO_State  #
24
 
Master_Host     127.0.0.1
25
 
Master_User     replssl
26
 
Master_Port     MASTER_MYPORT
27
 
Connect_Retry   1
28
 
Master_Log_File master-bin.000001
29
 
Read_Master_Log_Pos     #
30
 
Relay_Log_File  #
31
 
Relay_Log_Pos   #
32
 
Relay_Master_Log_File   master-bin.000001
33
 
Slave_IO_Running        Yes
34
 
Slave_SQL_Running       Yes
35
 
Replicate_Do_DB 
36
 
Replicate_Ignore_DB     
37
 
Replicate_Do_Table      
38
 
Replicate_Ignore_Table  
39
 
Replicate_Wild_Do_Table 
40
 
Replicate_Wild_Ignore_Table     
41
 
Last_Errno      0
42
 
Last_Error      
43
 
Skip_Counter    0
44
 
Exec_Master_Log_Pos     #
45
 
Relay_Log_Space #
46
 
Until_Condition None
47
 
Until_Log_File  
48
 
Until_Log_Pos   0
49
22
Master_SSL_Allowed      Yes
 
23
Master_SSL_CA_Path      
50
24
Master_SSL_CA_File      MYSQL_TEST_DIR/std_data/cacert.pem
51
 
Master_SSL_CA_Path      
52
25
Master_SSL_Cert MYSQL_TEST_DIR/std_data/client-cert.pem
53
 
Master_SSL_Cipher       
54
26
Master_SSL_Key  MYSQL_TEST_DIR/std_data/client-key.pem
55
 
Seconds_Behind_Master   #
56
 
Master_SSL_Verify_Server_Cert   No
57
 
Last_IO_Errno   #
58
 
Last_IO_Error   #
59
 
Last_SQL_Errno  0
60
 
Last_SQL_Error  
 
27
Checking that both slave threads are running.
61
28
STOP SLAVE;
62
29
select * from t1;
63
30
t
64
31
1
65
32
insert into t1 values (NULL);
66
 
show slave status;
67
 
Slave_IO_State  #
68
 
Master_Host     127.0.0.1
69
 
Master_User     replssl
70
 
Master_Port     MASTER_MYPORT
71
 
Connect_Retry   1
72
 
Master_Log_File master-bin.000001
73
 
Read_Master_Log_Pos     #
74
 
Relay_Log_File  #
75
 
Relay_Log_Pos   #
76
 
Relay_Master_Log_File   master-bin.000001
77
 
Slave_IO_Running        Yes
78
 
Slave_SQL_Running       Yes
79
 
Replicate_Do_DB 
80
 
Replicate_Ignore_DB     
81
 
Replicate_Do_Table      
82
 
Replicate_Ignore_Table  
83
 
Replicate_Wild_Do_Table 
84
 
Replicate_Wild_Ignore_Table     
85
 
Last_Errno      0
86
 
Last_Error      
87
 
Skip_Counter    0
88
 
Exec_Master_Log_Pos     #
89
 
Relay_Log_Space #
90
 
Until_Condition None
91
 
Until_Log_File  
92
 
Until_Log_Pos   0
93
33
Master_SSL_Allowed      Yes
 
34
Master_SSL_CA_Path      
94
35
Master_SSL_CA_File      MYSQL_TEST_DIR/std_data/cacert.pem
95
 
Master_SSL_CA_Path      
96
36
Master_SSL_Cert MYSQL_TEST_DIR/std_data/client-cert.pem
97
 
Master_SSL_Cipher       
98
37
Master_SSL_Key  MYSQL_TEST_DIR/std_data/client-key.pem
99
 
Seconds_Behind_Master   #
100
 
Master_SSL_Verify_Server_Cert   No
101
 
Last_IO_Errno   #
102
 
Last_IO_Error   #
103
 
Last_SQL_Errno  0
104
 
Last_SQL_Error  
 
38
Checking that both slave threads are running.
105
39
drop user replssl@localhost;
106
40
drop table t1;
107
41
End of 5.0 tests