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

« back to all changes in this revision

Viewing changes to mysql-test/suite/engines/funcs/r/rpl_row_until.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:
12
12
insert into t2 values (1),(2);
13
13
insert into t2 values (3),(4);
14
14
drop table t2;
15
 
start slave until master_log_file='master-bin.000001', master_log_pos=311;
16
 
select * from t1;
17
 
n
18
 
1
19
 
2
20
 
3
21
 
4
22
 
show slave status;
23
 
Slave_IO_State  #
24
 
Master_Host     127.0.0.1
25
 
Master_User     root
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  slave-relay-bin.000004
31
 
Relay_Log_Pos   #
32
 
Relay_Master_Log_File   master-bin.000001
33
 
Slave_IO_Running        #
34
 
Slave_SQL_Running       No
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 Master
47
 
Until_Log_File  master-bin.000001
48
 
Until_Log_Pos   311
49
 
Master_SSL_Allowed      No
50
 
Master_SSL_CA_File      
51
 
Master_SSL_CA_Path      
52
 
Master_SSL_Cert 
53
 
Master_SSL_Cipher       
54
 
Master_SSL_Key  
55
 
Seconds_Behind_Master   #
56
 
Master_SSL_Verify_Server_Cert   No
57
 
Last_IO_Errno   0
58
 
Last_IO_Error   
59
 
Last_SQL_Errno  0
60
 
Last_SQL_Error  
61
 
start slave until master_log_file='master-no-such-bin.000001', master_log_pos=291;
62
 
select * from t1;
63
 
n       1
64
 
n       2
65
 
n       3
66
 
n       4
67
 
show slave status;
68
 
Slave_IO_State  #
69
 
Master_Host     127.0.0.1
70
 
Master_User     root
71
 
Master_Port     MASTER_MYPORT
72
 
Connect_Retry   1
73
 
Master_Log_File master-bin.000001
74
 
Read_Master_Log_Pos     #
75
 
Relay_Log_File  slave-relay-bin.000004
76
 
Relay_Log_Pos   #
77
 
Relay_Master_Log_File   master-bin.000001
78
 
Slave_IO_Running        #
79
 
Slave_SQL_Running       No
80
 
Replicate_Do_DB 
81
 
Replicate_Ignore_DB     
82
 
Replicate_Do_Table      
83
 
Replicate_Ignore_Table  
84
 
Replicate_Wild_Do_Table 
85
 
Replicate_Wild_Ignore_Table     
86
 
Last_Errno      0
87
 
Last_Error      
88
 
Skip_Counter    0
89
 
Exec_Master_Log_Pos     #
90
 
Relay_Log_Space #
91
 
Until_Condition Master
92
 
Until_Log_File  master-no-such-bin.000001
93
 
Until_Log_Pos   291
94
 
Master_SSL_Allowed      No
95
 
Master_SSL_CA_File      
96
 
Master_SSL_CA_Path      
97
 
Master_SSL_Cert 
98
 
Master_SSL_Cipher       
99
 
Master_SSL_Key  
100
 
Seconds_Behind_Master   #
101
 
Master_SSL_Verify_Server_Cert   No
102
 
Last_IO_Errno   0
103
 
Last_IO_Error   
104
 
Last_SQL_Errno  0
105
 
Last_SQL_Error  
106
 
start slave until relay_log_file='slave-relay-bin.000004', relay_log_pos=728;
 
15
start slave until master_log_file='master-bin.000001', master_log_pos=MASTER_LOG_POS;
 
16
select * from t1;
 
17
n
 
18
1
 
19
2
 
20
3
 
21
4
 
22
start slave until master_log_file='master-no-such-bin.000001', master_log_pos=MASTER_LOG_POS;
 
23
select * from t1;
 
24
n
 
25
1
 
26
2
 
27
3
 
28
4
 
29
start slave until relay_log_file='slave-relay-bin.000004', relay_log_pos=RELAY_LOG_POS;
107
30
select * from t2;
108
 
show slave status;
109
 
Slave_IO_State  #
110
 
Master_Host     127.0.0.1
111
 
Master_User     root
112
 
Master_Port     MASTER_MYPORT
113
 
Connect_Retry   1
114
 
Master_Log_File master-bin.000001
115
 
Read_Master_Log_Pos     #
116
 
Relay_Log_File  slave-relay-bin.000004
117
 
Relay_Log_Pos   #
118
 
Relay_Master_Log_File   master-bin.000001
119
 
Slave_IO_Running        #
120
 
Slave_SQL_Running       No
121
 
Replicate_Do_DB 
122
 
Replicate_Ignore_DB     
123
 
Replicate_Do_Table      
124
 
Replicate_Ignore_Table  
125
 
Replicate_Wild_Do_Table 
126
 
Replicate_Wild_Ignore_Table     
127
 
Last_Errno      0
128
 
Last_Error      
129
 
Skip_Counter    0
130
 
Exec_Master_Log_Pos     #
131
 
Relay_Log_Space #
132
 
Until_Condition Relay
133
 
Until_Log_File  slave-relay-bin.000004
134
 
Until_Log_Pos   728
135
 
Master_SSL_Allowed      No
136
 
Master_SSL_CA_File      
137
 
Master_SSL_CA_Path      
138
 
Master_SSL_Cert 
139
 
Master_SSL_Cipher       
140
 
Master_SSL_Key  
141
 
Seconds_Behind_Master   #
142
 
Master_SSL_Verify_Server_Cert   No
143
 
Last_IO_Errno   0
144
 
Last_IO_Error   
145
 
Last_SQL_Errno  0
146
 
Last_SQL_Error  
 
31
n
 
32
1
 
33
2
147
34
start slave;
148
35
stop slave;
149
 
start slave until master_log_file='master-bin.000001', master_log_pos=740;
150
 
show slave status;
151
 
Slave_IO_State  #
152
 
Master_Host     127.0.0.1
153
 
Master_User     root
154
 
Master_Port     MASTER_MYPORT
155
 
Connect_Retry   1
156
 
Master_Log_File master-bin.000001
157
 
Read_Master_Log_Pos     #
158
 
Relay_Log_File  slave-relay-bin.000004
159
 
Relay_Log_Pos   #
160
 
Relay_Master_Log_File   master-bin.000001
161
 
Slave_IO_Running        Yes
162
 
Slave_SQL_Running       No
163
 
Replicate_Do_DB 
164
 
Replicate_Ignore_DB     
165
 
Replicate_Do_Table      
166
 
Replicate_Ignore_Table  
167
 
Replicate_Wild_Do_Table 
168
 
Replicate_Wild_Ignore_Table     
169
 
Last_Errno      0
170
 
Last_Error      
171
 
Skip_Counter    0
172
 
Exec_Master_Log_Pos     #
173
 
Relay_Log_Space #
174
 
Until_Condition Master
175
 
Until_Log_File  master-bin.000001
176
 
Until_Log_Pos   740
177
 
Master_SSL_Allowed      No
178
 
Master_SSL_CA_File      
179
 
Master_SSL_CA_Path      
180
 
Master_SSL_Cert 
181
 
Master_SSL_Cipher       
182
 
Master_SSL_Key  
183
 
Seconds_Behind_Master   #
184
 
Master_SSL_Verify_Server_Cert   No
185
 
Last_IO_Errno   0
186
 
Last_IO_Error   
187
 
Last_SQL_Errno  0
188
 
Last_SQL_Error  
189
 
start slave until master_log_file='master-bin', master_log_pos=561;
 
36
start slave until master_log_file='master-bin.000001', master_log_pos=MASTER_LOG_POS;
 
37
start slave until master_log_file='master-bin', master_log_pos=MASTER_LOG_POS;
190
38
ERROR HY000: Incorrect parameter or combination of parameters for START SLAVE UNTIL
191
 
start slave until master_log_file='master-bin.000001', master_log_pos=561, relay_log_pos=12;
 
39
start slave until master_log_file='master-bin.000001', master_log_pos=MASTER_LOG_POS, relay_log_pos=RELAY_LOG_POS;
192
40
ERROR HY000: Incorrect parameter or combination of parameters for START SLAVE UNTIL
193
41
start slave until master_log_file='master-bin.000001';
194
42
ERROR HY000: Incorrect parameter or combination of parameters for START SLAVE UNTIL
195
43
start slave until relay_log_file='slave-relay-bin.000002';
196
44
ERROR HY000: Incorrect parameter or combination of parameters for START SLAVE UNTIL
197
 
start slave until relay_log_file='slave-relay-bin.000002', master_log_pos=561;
 
45
start slave until relay_log_file='slave-relay-bin.000002', master_log_pos=MASTER_LOG_POS;
198
46
ERROR HY000: Incorrect parameter or combination of parameters for START SLAVE UNTIL
199
47
start slave sql_thread;
200
 
start slave until master_log_file='master-bin.000001', master_log_pos=740;
 
48
start slave until master_log_file='master-bin.000001', master_log_pos=MASTER_LOG_POS;
201
49
Warnings:
202
 
Level   Note
203
 
Code    1254
204
 
Message Slave is already running
 
50
Note    1254    Slave is already running