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

« back to all changes in this revision

Viewing changes to mysql-test/suite/rpl_ndb/r/rpl_ndb_circular_simplex.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:
14
14
STOP SLAVE;
15
15
CHANGE MASTER TO MASTER_HOST="127.0.0.1",MASTER_PORT=SLAVE_PORT,MASTER_USER="root";
16
16
START SLAVE;
17
 
SHOW SLAVE STATUS;
18
 
Slave_IO_State  #
19
 
Master_Host     127.0.0.1
20
 
Master_User     root
21
 
Master_Port     SLAVE_PORT
22
 
Connect_Retry   60
23
 
Master_Log_File slave-bin.000001
24
 
Read_Master_Log_Pos     #
25
 
Relay_Log_File  #
26
 
Relay_Log_Pos   #
27
 
Relay_Master_Log_File   slave-bin.000001
28
 
Slave_IO_Running        Yes
29
 
Slave_SQL_Running       Yes
30
 
Replicate_Do_DB 
31
 
Replicate_Ignore_DB     
32
 
Replicate_Do_Table      
33
 
Replicate_Ignore_Table  
34
 
Replicate_Wild_Do_Table 
35
 
Replicate_Wild_Ignore_Table     
36
 
Last_Errno      0
37
 
Last_Error      
38
 
Skip_Counter    0
39
 
Exec_Master_Log_Pos     #
40
 
Relay_Log_Space #
41
 
Until_Condition None
42
 
Until_Log_File  
43
 
Until_Log_Pos   0
44
 
Master_SSL_Allowed      No
45
 
Master_SSL_CA_File      
46
 
Master_SSL_CA_Path      
47
 
Master_SSL_Cert 
48
 
Master_SSL_Cipher       
49
 
Master_SSL_Key  
50
 
Seconds_Behind_Master   #
51
 
Master_SSL_Verify_Server_Cert   No
52
 
Last_IO_Errno   #
53
 
Last_IO_Error   #
54
 
Last_SQL_Errno  0
55
 
Last_SQL_Error  
 
17
Checking that both slave threads are running.
56
18
SELECT * FROM t1 ORDER BY a;
57
19
a       b
58
20
1       2
63
25
a       b
64
26
1       2
65
27
2       3
66
 
SHOW SLAVE STATUS;
67
 
Slave_IO_State  #
68
 
Master_Host     127.0.0.1
69
 
Master_User     root
70
 
Master_Port     MASTER_PORT
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
 
Master_SSL_Allowed      No
94
 
Master_SSL_CA_File      
95
 
Master_SSL_CA_Path      
96
 
Master_SSL_Cert 
97
 
Master_SSL_Cipher       
98
 
Master_SSL_Key  
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  
 
28
Checking that both slave threads are running.
105
29
DROP TABLE t1;