~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: brian
  • Date: 2008-06-25 05:29:13 UTC
  • Revision ID: brian@localhost.localdomain-20080625052913-6upwo0jsrl4lnapl
clean slate

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
stop slave;
 
2
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
 
3
reset master;
 
4
reset slave;
 
5
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
 
6
start slave;
 
7
**** Diff Table Def Start ****
 
8
*** On Slave ***
 
9
STOP SLAVE;
 
10
RESET SLAVE;
 
11
CREATE TABLE t1 (a INT, b INT PRIMARY KEY, c CHAR(20),
 
12
d FLOAT DEFAULT '2.00', 
 
13
e CHAR(4) DEFAULT 'TEST') 
 
14
ENGINE='MyISAM';
 
15
*** Create t1 on Master ***
 
16
CREATE TABLE t1 (a INT PRIMARY KEY, b INT, c CHAR(10)
 
17
) ENGINE='MyISAM';
 
18
RESET MASTER;
 
19
*** Start Slave ***
 
20
START SLAVE;
 
21
*** Master Data Insert ***
 
22
INSERT INTO t1 () VALUES(1,2,'TEXAS'),(2,1,'AUSTIN'),(3,4,'QA');
 
23
SELECT * FROM t1 ORDER BY a;
 
24
a       b       c
 
25
1       2       TEXAS
 
26
2       1       AUSTIN
 
27
3       4       QA
 
28
*** Select from slave ***
 
29
SELECT * FROM t1 ORDER BY a;
 
30
a       b       c       d       e
 
31
1       2       TEXAS   2       TEST
 
32
2       1       AUSTIN  2       TEST
 
33
3       4       QA      2       TEST
 
34
*** Drop t1  ***
 
35
DROP TABLE t1;
 
36
*** Create t2 on slave  ***
 
37
STOP SLAVE;
 
38
RESET SLAVE;
 
39
CREATE TABLE t2 (a INT, b INT PRIMARY KEY, c CHAR(5),
 
40
d FLOAT DEFAULT '2.00',
 
41
e CHAR(5) DEFAULT 'TEST2')
 
42
ENGINE='MyISAM';
 
43
*** Create t2 on Master ***
 
44
CREATE TABLE t2 (a INT PRIMARY KEY, b INT, c CHAR(10)
 
45
) ENGINE='MyISAM';
 
46
RESET MASTER;
 
47
*** Master Data Insert ***
 
48
INSERT INTO t2 () VALUES(1,2,'Kyle, TEX'),(2,1,'JOE AUSTIN'),(3,4,'QA TESTING');
 
49
SELECT * FROM t2 ORDER BY a;
 
50
a       b       c
 
51
1       2       Kyle, TEX
 
52
2       1       JOE AUSTIN
 
53
3       4       QA TESTING
 
54
*** Start Slave ***
 
55
START SLAVE;
 
56
SHOW SLAVE STATUS;
 
57
Slave_IO_State  #
 
58
Master_Host     127.0.0.1
 
59
Master_User     root
 
60
Master_Port     #
 
61
Connect_Retry   1
 
62
Master_Log_File master-bin.000001
 
63
Read_Master_Log_Pos     #
 
64
Relay_Log_File  #
 
65
Relay_Log_Pos   #
 
66
Relay_Master_Log_File   master-bin.000001
 
67
Slave_IO_Running        Yes
 
68
Slave_SQL_Running       No
 
69
Replicate_Do_DB 
 
70
Replicate_Ignore_DB     
 
71
Replicate_Do_Table      
 
72
Replicate_Ignore_Table  #
 
73
Replicate_Wild_Do_Table 
 
74
Replicate_Wild_Ignore_Table     
 
75
Last_Errno      1535
 
76
Last_Error      Table definition on master and slave does not match: Column 2 size mismatch - master has size 10, test.t2 on slave has size 6. Master's column size should be <= the slave's column size.
 
77
Skip_Counter    0
 
78
Exec_Master_Log_Pos     #
 
79
Relay_Log_Space #
 
80
Until_Condition None
 
81
Until_Log_File  
 
82
Until_Log_Pos   0
 
83
Master_SSL_Allowed      No
 
84
Master_SSL_CA_File      
 
85
Master_SSL_CA_Path      
 
86
Master_SSL_Cert 
 
87
Master_SSL_Cipher       
 
88
Master_SSL_Key  
 
89
Seconds_Behind_Master   #
 
90
Master_SSL_Verify_Server_Cert   No
 
91
Last_IO_Errno   #
 
92
Last_IO_Error   #
 
93
Last_SQL_Errno  1535
 
94
Last_SQL_Error  Table definition on master and slave does not match: Column 2 size mismatch - master has size 10, test.t2 on slave has size 6. Master's column size should be <= the slave's column size.
 
95
STOP SLAVE;
 
96
RESET SLAVE;
 
97
SELECT * FROM t2 ORDER BY a;
 
98
a       b       c       d       e
 
99
RESET MASTER;
 
100
START SLAVE;
 
101
*** Drop t2  ***
 
102
DROP TABLE t2;
 
103
*** Create t3 on slave  ***
 
104
STOP SLAVE;
 
105
RESET SLAVE;
 
106
CREATE TABLE t3 (a INT, b INT PRIMARY KEY, c CHAR(20),
 
107
d FLOAT DEFAULT '2.00',
 
108
e CHAR(5) DEFAULT 'TEST2')
 
109
ENGINE='MyISAM';
 
110
*** Create t3 on Master ***
 
111
CREATE TABLE t3 (a BLOB, b INT PRIMARY KEY, c CHAR(20)
 
112
) ENGINE='MyISAM';
 
113
RESET MASTER;
 
114
*** Start Slave ***
 
115
START SLAVE;
 
116
*** Master Data Insert ***
 
117
set @b1 = 'b1';
 
118
set @b1 = concat(@b1,@b1);
 
119
INSERT INTO t3 () VALUES(@b1,2,'Kyle, TEX'),(@b1,1,'JOE AUSTIN'),(@b1,4,'QA TESTING');
 
120
********************************************
 
121
*** Expect slave to fail with Error 1522 ***
 
122
********************************************
 
123
SHOW SLAVE STATUS;
 
124
Slave_IO_State  #
 
125
Master_Host     127.0.0.1
 
126
Master_User     root
 
127
Master_Port     #
 
128
Connect_Retry   1
 
129
Master_Log_File master-bin.000001
 
130
Read_Master_Log_Pos     #
 
131
Relay_Log_File  #
 
132
Relay_Log_Pos   #
 
133
Relay_Master_Log_File   master-bin.000001
 
134
Slave_IO_Running        Yes
 
135
Slave_SQL_Running       No
 
136
Replicate_Do_DB 
 
137
Replicate_Ignore_DB     
 
138
Replicate_Do_Table      
 
139
Replicate_Ignore_Table  #
 
140
Replicate_Wild_Do_Table 
 
141
Replicate_Wild_Ignore_Table     
 
142
Last_Errno      1535
 
143
Last_Error      Table definition on master and slave does not match: Column 0 type mismatch - received type 252, test.t3 has type 3
 
144
Skip_Counter    0
 
145
Exec_Master_Log_Pos     #
 
146
Relay_Log_Space #
 
147
Until_Condition None
 
148
Until_Log_File  
 
149
Until_Log_Pos   0
 
150
Master_SSL_Allowed      No
 
151
Master_SSL_CA_File      
 
152
Master_SSL_CA_Path      
 
153
Master_SSL_Cert 
 
154
Master_SSL_Cipher       
 
155
Master_SSL_Key  
 
156
Seconds_Behind_Master   #
 
157
Master_SSL_Verify_Server_Cert   No
 
158
Last_IO_Errno   #
 
159
Last_IO_Error   #
 
160
Last_SQL_Errno  1535
 
161
Last_SQL_Error  Table definition on master and slave does not match: Column 0 type mismatch - received type 252, test.t3 has type 3
 
162
SET GLOBAL SQL_SLAVE_SKIP_COUNTER=2;
 
163
START SLAVE;
 
164
*** Drop t3  ***
 
165
DROP TABLE t3;
 
166
*** Create t4 on slave  ***
 
167
STOP SLAVE;
 
168
RESET SLAVE;
 
169
CREATE TABLE t4 (a INT, b INT PRIMARY KEY, c CHAR(20),
 
170
d FLOAT DEFAULT '2.00',
 
171
e CHAR(5) DEFAULT 'TEST2')
 
172
ENGINE='MyISAM';
 
173
*** Create t4 on Master ***
 
174
CREATE TABLE t4 (a DECIMAL(8,2), b INT PRIMARY KEY, c CHAR(20)
 
175
) ENGINE='MyISAM';
 
176
RESET MASTER;
 
177
*** Start Slave ***
 
178
START SLAVE;
 
179
*** Master Data Insert ***
 
180
INSERT INTO t4 () VALUES(100.22,2,'Kyle, TEX'),(200.26,1,'JOE AUSTIN'),
 
181
(30000.22,4,'QA TESTING');
 
182
********************************************
 
183
*** Expect slave to fail with Error 1522 ***
 
184
********************************************
 
185
SHOW SLAVE STATUS;
 
186
Slave_IO_State  #
 
187
Master_Host     127.0.0.1
 
188
Master_User     root
 
189
Master_Port     #
 
190
Connect_Retry   1
 
191
Master_Log_File master-bin.000001
 
192
Read_Master_Log_Pos     #
 
193
Relay_Log_File  #
 
194
Relay_Log_Pos   #
 
195
Relay_Master_Log_File   master-bin.000001
 
196
Slave_IO_Running        Yes
 
197
Slave_SQL_Running       No
 
198
Replicate_Do_DB 
 
199
Replicate_Ignore_DB     
 
200
Replicate_Do_Table      
 
201
Replicate_Ignore_Table  #
 
202
Replicate_Wild_Do_Table 
 
203
Replicate_Wild_Ignore_Table     
 
204
Last_Errno      1535
 
205
Last_Error      Table definition on master and slave does not match: Column 0 type mismatch - received type 246, test.t4 has type 3
 
206
Skip_Counter    0
 
207
Exec_Master_Log_Pos     #
 
208
Relay_Log_Space #
 
209
Until_Condition None
 
210
Until_Log_File  
 
211
Until_Log_Pos   0
 
212
Master_SSL_Allowed      No
 
213
Master_SSL_CA_File      
 
214
Master_SSL_CA_Path      
 
215
Master_SSL_Cert 
 
216
Master_SSL_Cipher       
 
217
Master_SSL_Key  
 
218
Seconds_Behind_Master   #
 
219
Master_SSL_Verify_Server_Cert   No
 
220
Last_IO_Errno   #
 
221
Last_IO_Error   #
 
222
Last_SQL_Errno  1535
 
223
Last_SQL_Error  Table definition on master and slave does not match: Column 0 type mismatch - received type 246, test.t4 has type 3
 
224
SET GLOBAL SQL_SLAVE_SKIP_COUNTER=2;
 
225
START SLAVE;
 
226
*** Drop t4  ***
 
227
DROP TABLE t4;
 
228
*** Create t5 on slave  ***
 
229
STOP SLAVE;
 
230
RESET SLAVE;
 
231
CREATE TABLE t5 (a INT PRIMARY KEY, b CHAR(5),
 
232
c FLOAT, d INT, e DOUBLE,
 
233
f DECIMAL(8,2))ENGINE='MyISAM';
 
234
*** Create t5 on Master ***
 
235
CREATE TABLE t5 (a INT PRIMARY KEY, b VARCHAR(6),
 
236
c DECIMAL(8,2), d BIT, e BLOB,
 
237
f FLOAT) ENGINE='MyISAM';
 
238
RESET MASTER;
 
239
*** Start Slave ***
 
240
START SLAVE;
 
241
*** Master Data Insert ***
 
242
INSERT INTO t5 () VALUES(1,'Kyle',200.23,1,'b1b1',23.00098),
 
243
(2,'JOE',300.01,0,'b2b2',1.0000009);
 
244
********************************************
 
245
*** Expect slave to fail with Error 1522 ***
 
246
********************************************
 
247
SHOW SLAVE STATUS;
 
248
Slave_IO_State  #
 
249
Master_Host     127.0.0.1
 
250
Master_User     root
 
251
Master_Port     #
 
252
Connect_Retry   1
 
253
Master_Log_File master-bin.000001
 
254
Read_Master_Log_Pos     #
 
255
Relay_Log_File  #
 
256
Relay_Log_Pos   #
 
257
Relay_Master_Log_File   master-bin.000001
 
258
Slave_IO_Running        Yes
 
259
Slave_SQL_Running       No
 
260
Replicate_Do_DB 
 
261
Replicate_Ignore_DB     
 
262
Replicate_Do_Table      
 
263
Replicate_Ignore_Table  #
 
264
Replicate_Wild_Do_Table 
 
265
Replicate_Wild_Ignore_Table     
 
266
Last_Errno      1535
 
267
Last_Error      Table definition on master and slave does not match: Column 5 type mismatch - received type 4, test.t5 has type 246
 
268
Skip_Counter    0
 
269
Exec_Master_Log_Pos     #
 
270
Relay_Log_Space #
 
271
Until_Condition None
 
272
Until_Log_File  
 
273
Until_Log_Pos   0
 
274
Master_SSL_Allowed      No
 
275
Master_SSL_CA_File      
 
276
Master_SSL_CA_Path      
 
277
Master_SSL_Cert 
 
278
Master_SSL_Cipher       
 
279
Master_SSL_Key  
 
280
Seconds_Behind_Master   #
 
281
Master_SSL_Verify_Server_Cert   No
 
282
Last_IO_Errno   #
 
283
Last_IO_Error   #
 
284
Last_SQL_Errno  1535
 
285
Last_SQL_Error  Table definition on master and slave does not match: Column 5 type mismatch - received type 4, test.t5 has type 246
 
286
SET GLOBAL SQL_SLAVE_SKIP_COUNTER=2;
 
287
START SLAVE;
 
288
*** Drop t5  ***
 
289
DROP TABLE t5;
 
290
*** Create t6 on slave  ***
 
291
STOP SLAVE;
 
292
RESET SLAVE;
 
293
CREATE TABLE t6 (a INT PRIMARY KEY, b CHAR(5),
 
294
c FLOAT, d INT)ENGINE='MyISAM';
 
295
*** Create t6 on Master ***
 
296
CREATE TABLE t6 (a INT PRIMARY KEY, b VARCHAR(6),
 
297
c DECIMAL(8,2), d BIT 
 
298
) ENGINE='MyISAM';
 
299
RESET MASTER;
 
300
*** Start Slave ***
 
301
START SLAVE;
 
302
*** Master Data Insert ***
 
303
INSERT INTO t6 () VALUES(1,'Kyle',200.23,1),
 
304
(2,'JOE',300.01,0);
 
305
********************************************
 
306
*** Expect slave to fail with Error 1522 ***
 
307
********************************************
 
308
SHOW SLAVE STATUS;
 
309
Slave_IO_State  #
 
310
Master_Host     127.0.0.1
 
311
Master_User     root
 
312
Master_Port     #
 
313
Connect_Retry   1
 
314
Master_Log_File master-bin.000001
 
315
Read_Master_Log_Pos     #
 
316
Relay_Log_File  #
 
317
Relay_Log_Pos   #
 
318
Relay_Master_Log_File   master-bin.000001
 
319
Slave_IO_Running        Yes
 
320
Slave_SQL_Running       No
 
321
Replicate_Do_DB 
 
322
Replicate_Ignore_DB     
 
323
Replicate_Do_Table      
 
324
Replicate_Ignore_Table  #
 
325
Replicate_Wild_Do_Table 
 
326
Replicate_Wild_Ignore_Table     
 
327
Last_Errno      1535
 
328
Last_Error      Table definition on master and slave does not match: Column 3 type mismatch - received type 16, test.t6 has type 3
 
329
Skip_Counter    0
 
330
Exec_Master_Log_Pos     #
 
331
Relay_Log_Space #
 
332
Until_Condition None
 
333
Until_Log_File  
 
334
Until_Log_Pos   0
 
335
Master_SSL_Allowed      No
 
336
Master_SSL_CA_File      
 
337
Master_SSL_CA_Path      
 
338
Master_SSL_Cert 
 
339
Master_SSL_Cipher       
 
340
Master_SSL_Key  
 
341
Seconds_Behind_Master   #
 
342
Master_SSL_Verify_Server_Cert   No
 
343
Last_IO_Errno   #
 
344
Last_IO_Error   #
 
345
Last_SQL_Errno  1535
 
346
Last_SQL_Error  Table definition on master and slave does not match: Column 3 type mismatch - received type 16, test.t6 has type 3
 
347
SET GLOBAL SQL_SLAVE_SKIP_COUNTER=3;
 
348
*** Drop t6  ***
 
349
DROP TABLE t6;
 
350
DROP TABLE t6;
 
351
START SLAVE;
 
352
**** Diff Table Def End ****
 
353
**** Extra Colums Start ****
 
354
*** Create t7 on slave  ***
 
355
STOP SLAVE;
 
356
RESET SLAVE;
 
357
CREATE TABLE t7 (a INT KEY, b BLOB, c CHAR(5),
 
358
d TIMESTAMP NULL DEFAULT '0000-00-00 00:00:00',
 
359
e CHAR(20) DEFAULT 'Extra Column Testing')
 
360
ENGINE='MyISAM';
 
361
*** Create t7 on Master ***
 
362
CREATE TABLE t7 (a INT PRIMARY KEY, b BLOB, c CHAR(5)
 
363
) ENGINE='MyISAM';
 
364
RESET MASTER;
 
365
*** Start Slave ***
 
366
START SLAVE;
 
367
*** Master Data Insert ***
 
368
set @b1 = 'b1';
 
369
set @b1 = concat(@b1,@b1);
 
370
INSERT INTO t7 () VALUES(1,@b1,'Kyle'),(2,@b1,'JOE'),(3,@b1,'QA');
 
371
SELECT * FROM t7 ORDER BY a;
 
372
a       b       c
 
373
1       b1b1    Kyle
 
374
2       b1b1    JOE
 
375
3       b1b1    QA
 
376
*** Select from slave ***
 
377
SELECT * FROM t7 ORDER BY a;
 
378
a       b       c       d       e
 
379
1       b1b1    Kyle    0000-00-00 00:00:00     Extra Column Testing
 
380
2       b1b1    JOE     0000-00-00 00:00:00     Extra Column Testing
 
381
3       b1b1    QA      0000-00-00 00:00:00     Extra Column Testing
 
382
*** Drop t7  ***
 
383
DROP TABLE t7;
 
384
*** Create t8 on slave  ***
 
385
STOP SLAVE;
 
386
RESET SLAVE;
 
387
CREATE TABLE t8 (a INT KEY, b BLOB, c CHAR(5),
 
388
d TIMESTAMP NULL DEFAULT '0000-00-00 00:00:00',
 
389
e INT)ENGINE='MyISAM';
 
390
*** Create t8 on Master ***
 
391
CREATE TABLE t8 (a INT PRIMARY KEY, b BLOB, c CHAR(5)
 
392
) ENGINE='MyISAM';
 
393
RESET MASTER;
 
394
*** Start Slave ***
 
395
START SLAVE;
 
396
*** Master Data Insert ***
 
397
set @b1 = 'b1b1b1b1';
 
398
set @b1 = concat(@b1,@b1);
 
399
INSERT INTO t8 () VALUES(1,@b1,'Kyle'),(2,@b1,'JOE'),(3,@b1,'QA');
 
400
*** Drop t8  ***
 
401
DROP TABLE t8;
 
402
STOP SLAVE;
 
403
RESET SLAVE;
 
404
CREATE TABLE t9 (a INT KEY, b BLOB, c CHAR(5),
 
405
d TIMESTAMP,
 
406
e INT NOT NULL) ENGINE='MyISAM';
 
407
*** Create t9 on Master ***
 
408
CREATE TABLE t9 (a INT PRIMARY KEY, b BLOB, c CHAR(5)
 
409
) ENGINE='MyISAM';
 
410
RESET MASTER;
 
411
*** Start Slave ***
 
412
START SLAVE;
 
413
*** Master Data Insert ***
 
414
set @b1 = 'b1b1b1b1';
 
415
set @b1 = concat(@b1,@b1);
 
416
INSERT INTO t9 () VALUES(1,@b1,'Kyle'),(2,@b1,'JOE'),(3,@b1,'QA');
 
417
SHOW SLAVE STATUS;
 
418
Slave_IO_State  #
 
419
Master_Host     127.0.0.1
 
420
Master_User     root
 
421
Master_Port     #
 
422
Connect_Retry   1
 
423
Master_Log_File master-bin.000001
 
424
Read_Master_Log_Pos     #
 
425
Relay_Log_File  #
 
426
Relay_Log_Pos   #
 
427
Relay_Master_Log_File   master-bin.000001
 
428
Slave_IO_Running        Yes
 
429
Slave_SQL_Running       No
 
430
Replicate_Do_DB 
 
431
Replicate_Ignore_DB     
 
432
Replicate_Do_Table      
 
433
Replicate_Ignore_Table  #
 
434
Replicate_Wild_Do_Table 
 
435
Replicate_Wild_Ignore_Table     
 
436
Last_Errno      1364
 
437
Last_Error      Could not execute Write_rows event on table test.t9; Field 'e' doesn't have a default value, Error_code: 1364; handler error HA_ERR_ROWS_EVENT_APPLY; the event's master log master-bin.000001, end_log_pos 331
 
438
Skip_Counter    0
 
439
Exec_Master_Log_Pos     #
 
440
Relay_Log_Space #
 
441
Until_Condition None
 
442
Until_Log_File  
 
443
Until_Log_Pos   0
 
444
Master_SSL_Allowed      No
 
445
Master_SSL_CA_File      
 
446
Master_SSL_CA_Path      
 
447
Master_SSL_Cert 
 
448
Master_SSL_Cipher       
 
449
Master_SSL_Key  
 
450
Seconds_Behind_Master   #
 
451
Master_SSL_Verify_Server_Cert   No
 
452
Last_IO_Errno   #
 
453
Last_IO_Error   #
 
454
Last_SQL_Errno  1364
 
455
Last_SQL_Error  Could not execute Write_rows event on table test.t9; Field 'e' doesn't have a default value, Error_code: 1364; handler error HA_ERR_ROWS_EVENT_APPLY; the event's master log master-bin.000001, end_log_pos 331
 
456
SET GLOBAL SQL_SLAVE_SKIP_COUNTER=2;
 
457
START SLAVE;
 
458
*** Create t10 on slave  ***
 
459
STOP SLAVE;
 
460
RESET SLAVE;
 
461
CREATE TABLE t10 (a INT KEY, b BLOB, f DOUBLE DEFAULT '233', 
 
462
c CHAR(5), e INT DEFAULT '1')ENGINE='MyISAM';
 
463
*** Create t10 on Master ***
 
464
CREATE TABLE t10 (a INT PRIMARY KEY, b BLOB, c CHAR(5)
 
465
) ENGINE='MyISAM';
 
466
RESET MASTER;
 
467
*** Start Slave ***
 
468
START SLAVE;
 
469
*** Master Data Insert ***
 
470
set @b1 = 'b1b1b1b1';
 
471
set @b1 = concat(@b1,@b1);
 
472
INSERT INTO t10 () VALUES(1,@b1,'Kyle'),(2,@b1,'JOE'),(3,@b1,'QA');
 
473
********************************************
 
474
*** Expect slave to fail with Error 1522 ***
 
475
********************************************
 
476
SHOW SLAVE STATUS;
 
477
Slave_IO_State  #
 
478
Master_Host     127.0.0.1
 
479
Master_User     root
 
480
Master_Port     #
 
481
Connect_Retry   1
 
482
Master_Log_File master-bin.000001
 
483
Read_Master_Log_Pos     #
 
484
Relay_Log_File  #
 
485
Relay_Log_Pos   #
 
486
Relay_Master_Log_File   master-bin.000001
 
487
Slave_IO_Running        Yes
 
488
Slave_SQL_Running       No
 
489
Replicate_Do_DB 
 
490
Replicate_Ignore_DB     
 
491
Replicate_Do_Table      
 
492
Replicate_Ignore_Table  #
 
493
Replicate_Wild_Do_Table 
 
494
Replicate_Wild_Ignore_Table     
 
495
Last_Errno      1535
 
496
Last_Error      Table definition on master and slave does not match: Column 2 type mismatch - received type 254, test.t10 has type 5
 
497
Skip_Counter    0
 
498
Exec_Master_Log_Pos     #
 
499
Relay_Log_Space #
 
500
Until_Condition None
 
501
Until_Log_File  
 
502
Until_Log_Pos   0
 
503
Master_SSL_Allowed      No
 
504
Master_SSL_CA_File      
 
505
Master_SSL_CA_Path      
 
506
Master_SSL_Cert 
 
507
Master_SSL_Cipher       
 
508
Master_SSL_Key  
 
509
Seconds_Behind_Master   #
 
510
Master_SSL_Verify_Server_Cert   No
 
511
Last_IO_Errno   #
 
512
Last_IO_Error   #
 
513
Last_SQL_Errno  1535
 
514
Last_SQL_Error  Table definition on master and slave does not match: Column 2 type mismatch - received type 254, test.t10 has type 5
 
515
SET GLOBAL SQL_SLAVE_SKIP_COUNTER=2;
 
516
START SLAVE;
 
517
*** Drop t10  ***
 
518
DROP TABLE t10;
 
519
*** Create t11 on slave  ***
 
520
STOP SLAVE;
 
521
RESET SLAVE;
 
522
CREATE TABLE t11 (a INT KEY, b BLOB, f TEXT,
 
523
c CHAR(5) DEFAULT 'test', e INT DEFAULT '1')ENGINE='MyISAM';
 
524
*** Create t11 on Master ***
 
525
CREATE TABLE t11 (a INT PRIMARY KEY, b BLOB, c VARCHAR(254)
 
526
) ENGINE='MyISAM';
 
527
RESET MASTER;
 
528
*** Start Slave ***
 
529
START SLAVE;
 
530
*** Master Data Insert ***
 
531
set @b1 = 'b1b1b1b1';
 
532
set @b1 = concat(@b1,@b1);
 
533
INSERT INTO t11 () VALUES(1,@b1,'Kyle'),(2,@b1,'JOE'),(3,@b1,'QA');
 
534
********************************************
 
535
*** Expect slave to fail with Error 1522 ***
 
536
********************************************
 
537
SHOW SLAVE STATUS;
 
538
Slave_IO_State  #
 
539
Master_Host     127.0.0.1
 
540
Master_User     root
 
541
Master_Port     #
 
542
Connect_Retry   1
 
543
Master_Log_File master-bin.000001
 
544
Read_Master_Log_Pos     #
 
545
Relay_Log_File  #
 
546
Relay_Log_Pos   #
 
547
Relay_Master_Log_File   master-bin.000001
 
548
Slave_IO_Running        Yes
 
549
Slave_SQL_Running       No
 
550
Replicate_Do_DB 
 
551
Replicate_Ignore_DB     
 
552
Replicate_Do_Table      
 
553
Replicate_Ignore_Table  #
 
554
Replicate_Wild_Do_Table 
 
555
Replicate_Wild_Ignore_Table     
 
556
Last_Errno      1535
 
557
Last_Error      Table definition on master and slave does not match: Column 2 type mismatch - received type 15, test.t11 has type 252
 
558
Skip_Counter    0
 
559
Exec_Master_Log_Pos     #
 
560
Relay_Log_Space #
 
561
Until_Condition None
 
562
Until_Log_File  
 
563
Until_Log_Pos   0
 
564
Master_SSL_Allowed      No
 
565
Master_SSL_CA_File      
 
566
Master_SSL_CA_Path      
 
567
Master_SSL_Cert 
 
568
Master_SSL_Cipher       
 
569
Master_SSL_Key  
 
570
Seconds_Behind_Master   #
 
571
Master_SSL_Verify_Server_Cert   No
 
572
Last_IO_Errno   #
 
573
Last_IO_Error   #
 
574
Last_SQL_Errno  1535
 
575
Last_SQL_Error  Table definition on master and slave does not match: Column 2 type mismatch - received type 15, test.t11 has type 252
 
576
SET GLOBAL SQL_SLAVE_SKIP_COUNTER=2;
 
577
START SLAVE;
 
578
*** Drop t11  ***
 
579
DROP TABLE t11;
 
580
*** Create t12 on slave  ***
 
581
STOP SLAVE;
 
582
RESET SLAVE;
 
583
CREATE TABLE t12 (a INT KEY, b BLOB, f TEXT,
 
584
c CHAR(5) DEFAULT 'test', e INT DEFAULT '1')ENGINE='MyISAM';
 
585
*** Create t12 on Master ***
 
586
CREATE TABLE t12 (a INT PRIMARY KEY, b BLOB, c BLOB
 
587
) ENGINE='MyISAM';
 
588
RESET MASTER;
 
589
*** Start Slave ***
 
590
START SLAVE;
 
591
*** Master Data Insert ***
 
592
set @b1 = 'b1b1b1b1';
 
593
set @b1 = concat(@b1,@b1);
 
594
INSERT INTO t12 () VALUES(1,@b1,'Kyle'),(2,@b1,'JOE'),(3,@b1,'QA');
 
595
SELECT * FROM t12 ORDER BY a;
 
596
a       b       c
 
597
1       b1b1b1b1b1b1b1b1        Kyle
 
598
2       b1b1b1b1b1b1b1b1        JOE
 
599
3       b1b1b1b1b1b1b1b1        QA
 
600
*** Select on Slave ***
 
601
SELECT * FROM t12 ORDER BY a;
 
602
a       b       f       c       e
 
603
1       b1b1b1b1b1b1b1b1        Kyle    test    1
 
604
2       b1b1b1b1b1b1b1b1        JOE     test    1
 
605
3       b1b1b1b1b1b1b1b1        QA      test    1
 
606
*** Drop t12  ***
 
607
DROP TABLE t12;
 
608
**** Extra Colums End ****
 
609
*** BUG 22177 Start ***
 
610
*** Create t13 on slave  ***
 
611
STOP SLAVE;
 
612
RESET SLAVE;
 
613
CREATE TABLE t13 (a INT KEY, b BLOB, c CHAR(5),
 
614
d INT DEFAULT '1',
 
615
e TIMESTAMP NULL DEFAULT CURRENT_TIMESTAMP
 
616
)ENGINE='MyISAM';
 
617
*** Create t13 on Master ***
 
618
CREATE TABLE t13 (a INT PRIMARY KEY, b BLOB, c CHAR(5)
 
619
) ENGINE='MyISAM';
 
620
RESET MASTER;
 
621
*** Start Slave ***
 
622
START SLAVE;
 
623
*** Master Data Insert ***
 
624
set @b1 = 'b1b1b1b1';
 
625
set @b1 = concat(@b1,@b1);
 
626
INSERT INTO t13 () VALUES(1,@b1,'Kyle'),(2,@b1,'JOE'),(3,@b1,'QA');
 
627
SELECT * FROM t13 ORDER BY a;
 
628
a       b       c
 
629
1       b1b1b1b1b1b1b1b1        Kyle
 
630
2       b1b1b1b1b1b1b1b1        JOE
 
631
3       b1b1b1b1b1b1b1b1        QA
 
632
*** Select on Slave ****
 
633
SELECT * FROM t13 ORDER BY a;
 
634
a       b       c       d       e
 
635
1       b1b1b1b1b1b1b1b1        Kyle    1       CURRENT_TIMESTAMP
 
636
2       b1b1b1b1b1b1b1b1        JOE     1       CURRENT_TIMESTAMP
 
637
3       b1b1b1b1b1b1b1b1        QA      1       CURRENT_TIMESTAMP
 
638
*** Drop t13  ***
 
639
DROP TABLE t13;
 
640
*** 22117 END *** 
 
641
*** Alter Master Table Testing Start ***
 
642
*** Create t14 on slave  ***
 
643
STOP SLAVE;
 
644
RESET SLAVE;
 
645
CREATE TABLE t14 (c1 INT KEY, c4 BLOB, c5 CHAR(5),
 
646
c6 INT DEFAULT '1',
 
647
c7 TIMESTAMP NULL DEFAULT CURRENT_TIMESTAMP
 
648
)ENGINE='MyISAM';
 
649
*** Create t14 on Master ***
 
650
CREATE TABLE t14 (c1 INT PRIMARY KEY, c4 BLOB, c5 CHAR(5)
 
651
) ENGINE='MyISAM';
 
652
RESET MASTER;
 
653
*** Start Slave ***
 
654
START SLAVE;
 
655
*** Master Data Insert ***
 
656
ALTER TABLE t14 ADD COLUMN c2 DECIMAL(8,2) AFTER c1;
 
657
ALTER TABLE t14 ADD COLUMN c3 TEXT AFTER c2;
 
658
set @b1 = 'b1b1b1b1';
 
659
set @b1 = concat(@b1,@b1);
 
660
INSERT INTO t14 () VALUES(1,1.00,'Replication Testing Extra Col',@b1,'Kyle'),
 
661
(2,2.00,'This Test Should work',@b1,'JOE'),
 
662
(3,3.00,'If is does not, I will open a bug',@b1,'QA');
 
663
SELECT * FROM t14 ORDER BY c1;
 
664
c1      c2      c3      c4      c5
 
665
1       1.00    Replication Testing Extra Col   b1b1b1b1b1b1b1b1        Kyle
 
666
2       2.00    This Test Should work   b1b1b1b1b1b1b1b1        JOE
 
667
3       3.00    If is does not, I will open a bug       b1b1b1b1b1b1b1b1        QA
 
668
*** Select on Slave ****
 
669
SELECT * FROM t14 ORDER BY c1;
 
670
c1      c2      c3      c4      c5      c6      c7
 
671
1       1.00    Replication Testing Extra Col   b1b1b1b1b1b1b1b1        Kyle    1       CURRENT_TIMESTAMP
 
672
2       2.00    This Test Should work   b1b1b1b1b1b1b1b1        JOE     1       CURRENT_TIMESTAMP
 
673
3       3.00    If is does not, I will open a bug       b1b1b1b1b1b1b1b1        QA      1       CURRENT_TIMESTAMP
 
674
*** Create t14a on slave  ***
 
675
STOP SLAVE;
 
676
RESET SLAVE;
 
677
CREATE TABLE t14a (c1 INT KEY, c4 BLOB, c5 CHAR(5),
 
678
c6 INT DEFAULT '1',
 
679
c7 TIMESTAMP NULL DEFAULT CURRENT_TIMESTAMP
 
680
)ENGINE='MyISAM';
 
681
*** Create t14a on Master ***
 
682
CREATE TABLE t14a (c1 INT PRIMARY KEY, c4 BLOB, c5 CHAR(5)
 
683
) ENGINE='MyISAM';
 
684
RESET MASTER;
 
685
*** Start Slave ***
 
686
START SLAVE;
 
687
*** Master Data Insert ***
 
688
set @b1 = 'b1b1b1b1';
 
689
set @b1 = concat(@b1,@b1);
 
690
INSERT INTO t14a () VALUES(1,@b1,'Kyle'),
 
691
(2,@b1,'JOE'),
 
692
(3,@b1,'QA');
 
693
SELECT * FROM t14a ORDER BY c1;
 
694
c1      c4      c5
 
695
1       b1b1b1b1b1b1b1b1        Kyle
 
696
2       b1b1b1b1b1b1b1b1        JOE
 
697
3       b1b1b1b1b1b1b1b1        QA
 
698
*** Select on Slave ****
 
699
SELECT * FROM t14a ORDER BY c1;
 
700
c1      c4      c5      c6      c7
 
701
1       b1b1b1b1b1b1b1b1        Kyle    1       CURRENT_TIMESTAMP
 
702
2       b1b1b1b1b1b1b1b1        JOE     1       CURRENT_TIMESTAMP
 
703
3       b1b1b1b1b1b1b1b1        QA      1       CURRENT_TIMESTAMP
 
704
STOP SLAVE;
 
705
RESET SLAVE;
 
706
*** Master Drop c5 ***
 
707
ALTER TABLE t14a DROP COLUMN c5;
 
708
RESET MASTER;
 
709
*** Start Slave ***
 
710
START SLAVE;
 
711
*** Master Data Insert ***
 
712
set @b1 = 'b1b1b1b1';
 
713
set @b1 = concat(@b1,@b1);
 
714
INSERT INTO t14a () VALUES(4,@b1),
 
715
(5,@b1),
 
716
(6,@b1);
 
717
SELECT * FROM t14a ORDER BY c1;
 
718
c1      c4
 
719
1       b1b1b1b1b1b1b1b1
 
720
2       b1b1b1b1b1b1b1b1
 
721
3       b1b1b1b1b1b1b1b1
 
722
4       b1b1b1b1b1b1b1b1
 
723
5       b1b1b1b1b1b1b1b1
 
724
6       b1b1b1b1b1b1b1b1
 
725
*** Select on Slave ****
 
726
SELECT * FROM t14a ORDER BY c1;
 
727
c1      c4      c5      c6      c7
 
728
1       b1b1b1b1b1b1b1b1        Kyle    1       CURRENT_TIMESTAMP
 
729
2       b1b1b1b1b1b1b1b1        JOE     1       CURRENT_TIMESTAMP
 
730
3       b1b1b1b1b1b1b1b1        QA      1       CURRENT_TIMESTAMP
 
731
4       b1b1b1b1b1b1b1b1        NULL    1       CURRENT_TIMESTAMP
 
732
5       b1b1b1b1b1b1b1b1        NULL    1       CURRENT_TIMESTAMP
 
733
6       b1b1b1b1b1b1b1b1        NULL    1       CURRENT_TIMESTAMP
 
734
*** connect to master and drop columns ***
 
735
ALTER TABLE t14 DROP COLUMN c2;
 
736
ALTER TABLE t14 DROP COLUMN c4;
 
737
*** Select from Master ***
 
738
SELECT * FROM t14 ORDER BY c1;
 
739
c1      c3      c5
 
740
1       Replication Testing Extra Col   Kyle
 
741
2       This Test Should work   JOE
 
742
3       If is does not, I will open a bug       QA
 
743
*** Select from Slave ***
 
744
SELECT * FROM t14 ORDER BY c1;
 
745
c1      c3      c5      c6      c7
 
746
1       Replication Testing Extra Col   Kyle    1       CURRENT_TIMESTAMP
 
747
2       This Test Should work   JOE     1       CURRENT_TIMESTAMP
 
748
3       If is does not, I will open a bug       QA      1       CURRENT_TIMESTAMP
 
749
*** Drop t14  ***
 
750
DROP TABLE t14;
 
751
*** Create t15 on slave  ***
 
752
STOP SLAVE;
 
753
RESET SLAVE;
 
754
CREATE TABLE t15 (c1 INT KEY, c2 DECIMAL(8,2), c3 TEXT,
 
755
c4 BLOB, c5 CHAR(5),
 
756
c6 INT DEFAULT '1',
 
757
c7 TIMESTAMP NULL DEFAULT CURRENT_TIMESTAMP
 
758
)ENGINE='MyISAM';
 
759
*** Create t15 on Master ***
 
760
CREATE TABLE t15 (c1 INT PRIMARY KEY, c2 DECIMAL(8,2), c3 TEXT,
 
761
c4 BLOB, c5 CHAR(5)) ENGINE='MyISAM';
 
762
RESET MASTER;
 
763
*** Start Slave ***
 
764
START SLAVE;
 
765
*** Master Data Insert ***
 
766
set @b1 = 'b1b1b1b1';
 
767
set @b1 = concat(@b1,@b1);
 
768
INSERT INTO t15 () VALUES(1,1.00,'Replication Testing Extra Col',@b1,'Kyle'),
 
769
(2,2.00,'This Test Should work',@b1,'JOE'),
 
770
(3,3.00,'If is does not, I will open a bug',@b1,'QA');
 
771
SELECT * FROM t15 ORDER BY c1;
 
772
c1      c2      c3      c4      c5
 
773
1       1.00    Replication Testing Extra Col   b1b1b1b1b1b1b1b1        Kyle
 
774
2       2.00    This Test Should work   b1b1b1b1b1b1b1b1        JOE
 
775
3       3.00    If is does not, I will open a bug       b1b1b1b1b1b1b1b1        QA
 
776
*** Select on Slave ****
 
777
SELECT * FROM t15 ORDER BY c1;
 
778
c1      c2      c3      c4      c5      c6      c7
 
779
1       1.00    Replication Testing Extra Col   b1b1b1b1b1b1b1b1        Kyle    1       CURRENT_TIMESTAMP
 
780
2       2.00    This Test Should work   b1b1b1b1b1b1b1b1        JOE     1       CURRENT_TIMESTAMP
 
781
3       3.00    If is does not, I will open a bug       b1b1b1b1b1b1b1b1        QA      1       CURRENT_TIMESTAMP
 
782
*** Add column on master that is a Extra on Slave ***
 
783
ALTER TABLE t15 ADD COLUMN c6 INT AFTER c5;
 
784
********************************************
 
785
*** Expect slave to fail with Error 1060 ***
 
786
********************************************
 
787
SHOW SLAVE STATUS;
 
788
Slave_IO_State  #
 
789
Master_Host     127.0.0.1
 
790
Master_User     root
 
791
Master_Port     #
 
792
Connect_Retry   1
 
793
Master_Log_File master-bin.000001
 
794
Read_Master_Log_Pos     #
 
795
Relay_Log_File  #
 
796
Relay_Log_Pos   #
 
797
Relay_Master_Log_File   master-bin.000001
 
798
Slave_IO_Running        Yes
 
799
Slave_SQL_Running       No
 
800
Replicate_Do_DB 
 
801
Replicate_Ignore_DB     
 
802
Replicate_Do_Table      
 
803
Replicate_Ignore_Table  #
 
804
Replicate_Wild_Do_Table 
 
805
Replicate_Wild_Ignore_Table     
 
806
Last_Errno      1060
 
807
Last_Error      Error 'Duplicate column name 'c6'' on query. Default database: 'test'. Query: 'ALTER TABLE t15 ADD COLUMN c6 INT AFTER c5'
 
808
Skip_Counter    0
 
809
Exec_Master_Log_Pos     #
 
810
Relay_Log_Space #
 
811
Until_Condition None
 
812
Until_Log_File  
 
813
Until_Log_Pos   0
 
814
Master_SSL_Allowed      No
 
815
Master_SSL_CA_File      
 
816
Master_SSL_CA_Path      
 
817
Master_SSL_Cert 
 
818
Master_SSL_Cipher       
 
819
Master_SSL_Key  
 
820
Seconds_Behind_Master   #
 
821
Master_SSL_Verify_Server_Cert   No
 
822
Last_IO_Errno   #
 
823
Last_IO_Error   #
 
824
Last_SQL_Errno  1060
 
825
Last_SQL_Error  Error 'Duplicate column name 'c6'' on query. Default database: 'test'. Query: 'ALTER TABLE t15 ADD COLUMN c6 INT AFTER c5'
 
826
SET GLOBAL SQL_SLAVE_SKIP_COUNTER=1;
 
827
START SLAVE;
 
828
*** Try to insert in master ****
 
829
INSERT INTO t15 () VALUES(5,2.00,'Replication Testing',@b1,'Buda',2);
 
830
SELECT * FROM t15 ORDER BY c1;
 
831
c1      c2      c3      c4      c5      c6
 
832
1       1.00    Replication Testing Extra Col   b1b1b1b1b1b1b1b1        Kyle    NULL
 
833
2       2.00    This Test Should work   b1b1b1b1b1b1b1b1        JOE     NULL
 
834
3       3.00    If is does not, I will open a bug       b1b1b1b1b1b1b1b1        QA      NULL
 
835
5       2.00    Replication Testing     b1b1b1b1b1b1b1b1        Buda    2
 
836
*** Try to select from slave ****
 
837
SELECT * FROM t15 ORDER BY c1;
 
838
c1      c2      c3      c4      c5      c6      c7
 
839
1       1.00    Replication Testing Extra Col   b1b1b1b1b1b1b1b1        Kyle    1       CURRENT_TIMESTAMP
 
840
2       2.00    This Test Should work   b1b1b1b1b1b1b1b1        JOE     1       CURRENT_TIMESTAMP
 
841
3       3.00    If is does not, I will open a bug       b1b1b1b1b1b1b1b1        QA      1       CURRENT_TIMESTAMP
 
842
5       2.00    Replication Testing     b1b1b1b1b1b1b1b1        Buda    2       CURRENT_TIMESTAMP
 
843
*** DROP TABLE t15 ***
 
844
DROP TABLE t15;
 
845
*** Create t16 on slave  ***
 
846
STOP SLAVE;
 
847
RESET SLAVE;
 
848
CREATE TABLE t16 (c1 INT KEY, c2 DECIMAL(8,2), c3 TEXT,
 
849
c4 BLOB, c5 CHAR(5),
 
850
c6 INT DEFAULT '1',
 
851
c7 TIMESTAMP NULL DEFAULT CURRENT_TIMESTAMP
 
852
)ENGINE='MyISAM';
 
853
*** Create t16 on Master ***
 
854
CREATE TABLE t16 (c1 INT PRIMARY KEY, c2 DECIMAL(8,2), c3 TEXT,
 
855
c4 BLOB, c5 CHAR(5))ENGINE='MyISAM';
 
856
RESET MASTER;
 
857
*** Start Slave ***
 
858
START SLAVE;
 
859
*** Master Data Insert ***
 
860
set @b1 = 'b1b1b1b1';
 
861
set @b1 = concat(@b1,@b1);
 
862
INSERT INTO t16 () VALUES(1,1.00,'Replication Testing Extra Col',@b1,'Kyle'),
 
863
(2,2.00,'This Test Should work',@b1,'JOE'),
 
864
(3,3.00,'If is does not, I will open a bug',@b1,'QA');
 
865
SELECT * FROM t16 ORDER BY c1;
 
866
c1      c2      c3      c4      c5
 
867
1       1.00    Replication Testing Extra Col   b1b1b1b1b1b1b1b1        Kyle
 
868
2       2.00    This Test Should work   b1b1b1b1b1b1b1b1        JOE
 
869
3       3.00    If is does not, I will open a bug       b1b1b1b1b1b1b1b1        QA
 
870
*** Select on Slave ****
 
871
SELECT * FROM t16 ORDER BY c1;
 
872
c1      c2      c3      c4      c5      c6      c7
 
873
1       1.00    Replication Testing Extra Col   b1b1b1b1b1b1b1b1        Kyle    1       CURRENT_TIMESTAMP
 
874
2       2.00    This Test Should work   b1b1b1b1b1b1b1b1        JOE     1       CURRENT_TIMESTAMP
 
875
3       3.00    If is does not, I will open a bug       b1b1b1b1b1b1b1b1        QA      1       CURRENT_TIMESTAMP
 
876
*** Add Partition on master ***
 
877
ALTER TABLE t16 PARTITION BY KEY(c1) PARTITIONS 4;
 
878
INSERT INTO t16 () VALUES(4,1.00,'Replication Rocks',@b1,'Omer');
 
879
SHOW CREATE TABLE t16;
 
880
Table   Create Table
 
881
t16     CREATE TABLE `t16` (
 
882
  `c1` int(11) NOT NULL,
 
883
  `c2` decimal(8,2) DEFAULT NULL,
 
884
  `c3` text,
 
885
  `c4` blob,
 
886
  `c5` char(5) DEFAULT NULL,
 
887
  PRIMARY KEY (`c1`)
 
888
) ENGINE=MyISAM DEFAULT CHARSET=latin1 /*!50100 PARTITION BY KEY (c1) PARTITIONS 4  */
 
889
*** Show table on Slave ****
 
890
SHOW CREATE TABLE t16;
 
891
Table   Create Table
 
892
t16     CREATE TABLE `t16` (
 
893
  `c1` int(11) NOT NULL,
 
894
  `c2` decimal(8,2) DEFAULT NULL,
 
895
  `c3` text,
 
896
  `c4` blob,
 
897
  `c5` char(5) DEFAULT NULL,
 
898
  `c6` int(11) DEFAULT '1',
 
899
  `c7` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
 
900
  PRIMARY KEY (`c1`)
 
901
) ENGINE=MyISAM DEFAULT CHARSET=latin1 /*!50100 PARTITION BY KEY (c1) PARTITIONS 4  */
 
902
*** DROP TABLE t16 ***
 
903
DROP TABLE t16;
 
904
*** Alter Master End ***
 
905
*** Create t17 on slave  ***
 
906
STOP SLAVE;
 
907
RESET SLAVE;
 
908
CREATE TABLE t17 (a SMALLINT, b INT PRIMARY KEY, c CHAR(5),
 
909
d FLOAT DEFAULT '2.00',
 
910
e CHAR(5) DEFAULT 'TEST2')
 
911
ENGINE='MyISAM';
 
912
*** Create t17 on Master ***
 
913
CREATE TABLE t17 (a BIGINT PRIMARY KEY, b INT, c CHAR(10)
 
914
) ENGINE='MyISAM';
 
915
RESET MASTER;
 
916
*** Start Slave ***
 
917
START SLAVE;
 
918
*** Master Data Insert ***
 
919
INSERT INTO t17 () VALUES(9223372036854775807,2,'Kyle, TEX');
 
920
********************************************
 
921
*** Expect slave to fail with Error 1522 ***
 
922
********************************************
 
923
SHOW SLAVE STATUS;
 
924
Slave_IO_State  #
 
925
Master_Host     127.0.0.1
 
926
Master_User     root
 
927
Master_Port     #
 
928
Connect_Retry   1
 
929
Master_Log_File master-bin.000001
 
930
Read_Master_Log_Pos     #
 
931
Relay_Log_File  #
 
932
Relay_Log_Pos   #
 
933
Relay_Master_Log_File   master-bin.000001
 
934
Slave_IO_Running        Yes
 
935
Slave_SQL_Running       No
 
936
Replicate_Do_DB 
 
937
Replicate_Ignore_DB     
 
938
Replicate_Do_Table      
 
939
Replicate_Ignore_Table  #
 
940
Replicate_Wild_Do_Table 
 
941
Replicate_Wild_Ignore_Table     
 
942
Last_Errno      1535
 
943
Last_Error      Table definition on master and slave does not match: Column 0 type mismatch - received type 8, test.t17 has type 2
 
944
Skip_Counter    0
 
945
Exec_Master_Log_Pos     #
 
946
Relay_Log_Space #
 
947
Until_Condition None
 
948
Until_Log_File  
 
949
Until_Log_Pos   0
 
950
Master_SSL_Allowed      No
 
951
Master_SSL_CA_File      
 
952
Master_SSL_CA_Path      
 
953
Master_SSL_Cert 
 
954
Master_SSL_Cipher       
 
955
Master_SSL_Key  
 
956
Seconds_Behind_Master   #
 
957
Master_SSL_Verify_Server_Cert   No
 
958
Last_IO_Errno   #
 
959
Last_IO_Error   #
 
960
Last_SQL_Errno  1535
 
961
Last_SQL_Error  Table definition on master and slave does not match: Column 0 type mismatch - received type 8, test.t17 has type 2
 
962
SET GLOBAL SQL_SLAVE_SKIP_COUNTER=2;
 
963
START SLAVE;
 
964
** DROP table t17 ***
 
965
DROP TABLE t17;