summaryrefslogtreecommitdiff
path: root/mysql-test/suite/parts/r/partition_repair_myisam.result
blob: 0521263df12dabeb51bf2388bad271b8a1b8492e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
# REPAIR USE_FRM is not implemented for partitioned tables.
# Test what happens if we exchange a crashed partition with a table
SHOW VARIABLES LIKE 'myisam_recover_options';
Variable_name	Value
myisam_recover_options	OFF
CREATE TABLE t (a INT, KEY (a)) ENGINE=MyISAM;
CREATE TABLE tp (a INT, KEY (a)) ENGINE=MyISAM
PARTITION BY RANGE (a)
(PARTITION pCrashed VALUES LESS THAN (15),
PARTITION pMAX VALUES LESS THAN MAXVALUE);
INSERT INTO t VALUES (1), (2), (3), (4), (5), (6), (7), (8), (9), (10), (11);
INSERT INTO tp VALUES (1), (2), (3), (4), (5), (6), (7), (8), (9), (10), (11);
FLUSH TABLES;
# replacing tp#P#pCrashed.MYI with a corrupt + unclosed one created by doing:
# 'create table t1 (a int key(a))' head -c1024 t1.MYI > corrupt_t1.MYI 
CHECK TABLE tp;
Table	Op	Msg_type	Msg_text
test.tp	check	warning	1 client is using or hasn't closed the table properly
test.tp	check	error	Size of indexfile is: 1024        Should be: 2048
test.tp	check	warning	Size of datafile is: 77       Should be: 7
test.tp	check	error	Partition pCrashed returned error
test.tp	check	error	Corrupt
ALTER TABLE tp EXCHANGE PARTITION pCrashed WITH TABLE t;
ERROR HY000: Table './test/tp#P#pCrashed' is marked as crashed and should be repaired
REPAIR TABLE tp;
Table	Op	Msg_type	Msg_text
test.tp	repair	warning	Number of rows changed from 1 to 11
test.tp	repair	status	OK
CHECK TABLE tp;
Table	Op	Msg_type	Msg_text
test.tp	check	status	OK
ALTER TABLE tp EXCHANGE PARTITION pCrashed WITH TABLE t;
CHECK TABLE t;
Table	Op	Msg_type	Msg_text
test.t	check	status	OK
CHECK TABLE tp;
Table	Op	Msg_type	Msg_text
test.tp	check	status	OK
FLUSH TABLES;
CHECK TABLE t;
Table	Op	Msg_type	Msg_text
test.t	check	warning	1 client is using or hasn't closed the table properly
test.t	check	error	Size of indexfile is: 1024        Should be: 2048
test.t	check	warning	Size of datafile is: 77       Should be: 7
test.t	check	error	Corrupt
ALTER TABLE tp EXCHANGE PARTITION pCrashed WITH TABLE t;
ERROR HY000: Table './test/t' is marked as crashed and should be repaired
REPAIR TABLE t;
Table	Op	Msg_type	Msg_text
test.t	repair	warning	Number of rows changed from 1 to 11
test.t	repair	status	OK
CHECK TABLE t;
Table	Op	Msg_type	Msg_text
test.t	check	status	OK
ALTER TABLE tp EXCHANGE PARTITION pCrashed WITH TABLE t;
CHECK TABLE tp;
Table	Op	Msg_type	Msg_text
test.tp	check	status	OK
CHECK TABLE t;
Table	Op	Msg_type	Msg_text
test.t	check	status	OK
DROP TABLE t, tp;
# test of non partitioned myisam for reference
CREATE TABLE t1_will_crash (a INT, KEY (a)) ENGINE=MyISAM;
INSERT INTO t1_will_crash VALUES (1), (2), (3), (4), (5), (6), (7), (8), (9), (10), (11);
FLUSH TABLES;
# replacing t1.MYI with a corrupt + unclosed one created by doing:
# 'create table t1 (a int key(a))' head -c1024 t1.MYI > corrupt_t1.MYI 
CHECK TABLE t1_will_crash;
Table	Op	Msg_type	Msg_text
test.t1_will_crash	check	warning	1 client is using or hasn't closed the table properly
test.t1_will_crash	check	error	Size of indexfile is: 1024        Should be: 2048
test.t1_will_crash	check	warning	Size of datafile is: 77       Should be: 7
test.t1_will_crash	check	error	Corrupt
REPAIR TABLE t1_will_crash;
Table	Op	Msg_type	Msg_text
test.t1_will_crash	repair	warning	Number of rows changed from 1 to 11
test.t1_will_crash	repair	status	OK
SELECT * FROM t1_will_crash;
a
1
2
3
4
5
6
7
8
9
10
11
DROP TABLE t1_will_crash;
# test of check/repair of a damaged partition's MYI-file
CREATE TABLE t1_will_crash (a INT, KEY (a))
ENGINE=MyISAM
PARTITION BY HASH (a)
PARTITIONS 3;
INSERT INTO t1_will_crash VALUES (1), (2), (3), (4), (5), (6), (7), (8), (9), (10), (11);
FLUSH TABLES;
# test with CHECK/REPAIR TABLE
# replacing t1#P#p1.MYI with a corrupt + unclosed one created by doing:
# 'create table t1 (a int key(a)) partition by hash (a) partitions 3'
# head -c1024 t1#P#p1.MYI > corrupt_t1#P#p1.MYI 
CHECK TABLE t1_will_crash;
Table	Op	Msg_type	Msg_text
test.t1_will_crash	check	warning	1 client is using or hasn't closed the table properly
test.t1_will_crash	check	error	Size of indexfile is: 1024        Should be: 2048
test.t1_will_crash	check	warning	Size of datafile is: 28       Should be: 7
test.t1_will_crash	check	error	Partition p1 returned error
test.t1_will_crash	check	error	Corrupt
REPAIR TABLE t1_will_crash;
Table	Op	Msg_type	Msg_text
test.t1_will_crash	repair	warning	Number of rows changed from 1 to 4
test.t1_will_crash	repair	status	OK
SELECT * FROM t1_will_crash;
a
1
2
3
4
5
6
7
8
9
10
11
FLUSH TABLES;
# test with ALTER TABLE ... CHECK/REPAIR PARTITION
# replacing t1_will_crash#P#p1.MYI with a corrupt + unclosed one
ALTER TABLE t1_will_crash CHECK PARTITION p0, p2;
Table	Op	Msg_type	Msg_text
test.t1_will_crash	check	status	OK
ALTER TABLE t1_will_crash CHECK PARTITION p0, p1;
Table	Op	Msg_type	Msg_text
test.t1_will_crash	check	warning	1 client is using or hasn't closed the table properly
test.t1_will_crash	check	error	Size of indexfile is: 1024        Should be: 2048
test.t1_will_crash	check	warning	Size of datafile is: 28       Should be: 7
test.t1_will_crash	check	error	Partition p1 returned error
test.t1_will_crash	check	error	Corrupt
ALTER TABLE t1_will_crash CHECK PARTITION p1, p2;
Table	Op	Msg_type	Msg_text
test.t1_will_crash	check	warning	Table is marked as crashed
test.t1_will_crash	check	warning	1 client is using or hasn't closed the table properly
test.t1_will_crash	check	error	Size of indexfile is: 1024        Should be: 2048
test.t1_will_crash	check	warning	Size of datafile is: 28       Should be: 7
test.t1_will_crash	check	error	Partition p1 returned error
test.t1_will_crash	check	error	Corrupt
ALTER TABLE t1_will_crash REPAIR PARTITION p0, p2;
Table	Op	Msg_type	Msg_text
test.t1_will_crash	repair	status	OK
ALTER TABLE t1_will_crash REPAIR PARTITION p0, p1;
Table	Op	Msg_type	Msg_text
test.t1_will_crash	repair	warning	Number of rows changed from 1 to 4
test.t1_will_crash	repair	status	OK
SELECT * FROM t1_will_crash;
a
1
2
3
4
5
6
7
8
9
10
11
DROP TABLE t1_will_crash;
# test of check/repair of a damaged subpartition's MYI-file
CREATE TABLE t1_will_crash (a INT, KEY (a))
ENGINE=MyISAM
PARTITION BY RANGE (a)
SUBPARTITION BY HASH (a)
SUBPARTITIONS 2
(PARTITION p0 VALUES LESS THAN (7),
PARTITION p1 VALUES LESS THAN MAXVALUE);
INSERT INTO t1_will_crash VALUES (1), (2), (3), (4), (5), (6), (7), (8), (9), (10), (11);
SELECT * FROM t1_will_crash;
a
1
2
3
4
5
6
7
8
9
10
11
FLUSH TABLES;
# test with CHECK/REPAIR TABLE
# replacing t1_will_crash#P#p1#SP#p1sp0.MYI with a corrupt + unclosed one
CHECK TABLE t1_will_crash;
Table	Op	Msg_type	Msg_text
test.t1_will_crash	check	warning	1 client is using or hasn't closed the table properly
test.t1_will_crash	check	error	Size of indexfile is: 1024        Should be: 2048
test.t1_will_crash	check	warning	Size of datafile is: 14       Should be: 7
test.t1_will_crash	check	error	Subpartition p1sp0 returned error
test.t1_will_crash	check	error	Corrupt
REPAIR TABLE t1_will_crash;
Table	Op	Msg_type	Msg_text
test.t1_will_crash	repair	warning	Number of rows changed from 1 to 2
test.t1_will_crash	repair	status	OK
SELECT * FROM t1_will_crash;
a
1
2
3
4
5
6
7
8
9
10
11
FLUSH TABLES;
# test with ALTER TABLE ... CHECK/REPAIR PARTITION
# replacing t1_will_crash#P#p1#SP#p1sp0.MYI with a corrupt + unclosed one
ALTER TABLE t1_will_crash CHECK PARTITION p0;
Table	Op	Msg_type	Msg_text
test.t1_will_crash	check	status	OK
ALTER TABLE t1_will_crash CHECK PARTITION all;
Table	Op	Msg_type	Msg_text
test.t1_will_crash	check	warning	1 client is using or hasn't closed the table properly
test.t1_will_crash	check	error	Size of indexfile is: 1024        Should be: 2048
test.t1_will_crash	check	warning	Size of datafile is: 14       Should be: 7
test.t1_will_crash	check	error	Subpartition p1sp0 returned error
test.t1_will_crash	check	error	Corrupt
ALTER TABLE t1_will_crash CHECK PARTITION p1;
Table	Op	Msg_type	Msg_text
test.t1_will_crash	check	warning	Table is marked as crashed
test.t1_will_crash	check	warning	1 client is using or hasn't closed the table properly
test.t1_will_crash	check	error	Size of indexfile is: 1024        Should be: 2048
test.t1_will_crash	check	warning	Size of datafile is: 14       Should be: 7
test.t1_will_crash	check	error	Subpartition p1sp0 returned error
test.t1_will_crash	check	error	Corrupt
ALTER TABLE t1_will_crash REPAIR PARTITION p0;
Table	Op	Msg_type	Msg_text
test.t1_will_crash	repair	status	OK
ALTER TABLE t1_will_crash REPAIR PARTITION p0, p1;
Table	Op	Msg_type	Msg_text
test.t1_will_crash	repair	warning	Number of rows changed from 1 to 2
test.t1_will_crash	repair	status	OK
SELECT * FROM t1_will_crash;
a
1
2
3
4
5
6
7
8
9
10
11
DROP TABLE t1_will_crash;
# test of check/repair of crashed partitions in variuos states
CREATE TABLE t1_will_crash (
a VARCHAR(255),
b INT,
c LONGTEXT,
PRIMARY KEY (a, b))
ENGINE=MyISAM
PARTITION BY HASH (b)
PARTITIONS 7;
SELECT COUNT(*) FROM t1_will_crash;
COUNT(*)
33
SELECT (b % 7) AS `partition`, COUNT(*) AS rows_cnt FROM t1_will_crash GROUP BY (b % 7);
partition	rows_cnt
0	2
1	5
2	5
3	5
4	4
5	4
6	8
SELECT (b % 7) AS `partition`, b, a, length(c) FROM t1_will_crash ORDER BY `partition`, b, a;
partition	b	a	length(c)
0	0	 lost	64
0	7	z lost	64
1	1	abc	64
1	8	tuw	64
1	29	kkkkkkkkKkk	64
1	71	1 broken when head -c1024 on datafile	1024
1	71	eee	64
2	2	def	64
2	9	vxy	64
2	23	lll	64
2	30	2 crashed after _mi_mark_changed	64
2	79	ccc	64
3	3	ghi	64
3	10	aaa	64
3	17	nnn	64
3	24	3 crashed after write_record	64
3	73	ddd	64
4	4	pqr	64
4	11	bbb	64
4	18	4 crashed after flush_cached_blocks	64
4	67	fff	64
5	5	mno	64
5	19	mmm	64
5	40	5 still here since crash in next row in multirow insert?	64
5	89	a	64
6	6	jkl	64
6	13	ooo	64
6	27	6 row 7 (crash before completely written to datafile)	128
6	34	6 row 2	64
6	48	6 row 4	64
6	62	6 row 6	64
6	83	 	64
6	97	zzzzzZzzzzz	64
FLUSH TABLES;
# truncating p0 to simulate an empty datafile (not recovered!)
# replacing p1 with only the first 1024 bytes (not recovered!)
# replacing p3 with a crashed one at the last row in first insert
# (crashed right after *share->write_record())
# replacing p6 with a crashed MYD file (1) (splitted dynamic record)
ANALYZE TABLE t1_will_crash;
Table	Op	Msg_type	Msg_text
test.t1_will_crash	analyze	Warning	Engine-independent statistics are not collected for column 'c'
test.t1_will_crash	analyze	status	Operation failed
OPTIMIZE TABLE t1_will_crash;
Table	Op	Msg_type	Msg_text
test.t1_will_crash	optimize	info	Found row block followed by deleted block
test.t1_will_crash	optimize	warning	Number of rows changed from 8 to 7
test.t1_will_crash	optimize	status	OK
CHECK TABLE t1_will_crash;
Table	Op	Msg_type	Msg_text
test.t1_will_crash	check	error	Size of datafile is: 0         Should be: 164
test.t1_will_crash	check	error	Partition p0 returned error
test.t1_will_crash	check	error	Corrupt
REPAIR TABLE t1_will_crash;
Table	Op	Msg_type	Msg_text
test.t1_will_crash	repair	warning	Number of rows changed from 2 to 0
test.t1_will_crash	repair	info	Found block that points outside data file at 344
test.t1_will_crash	repair	warning	Number of rows changed from 5 to 4
test.t1_will_crash	repair	warning	Number of rows changed from 0 to 5
test.t1_will_crash	repair	status	OK
SELECT COUNT(*) FROM t1_will_crash;
COUNT(*)
29
SELECT (b % 7) AS `partition`, COUNT(*) AS rows_cnt FROM t1_will_crash GROUP BY (b % 7);
partition	rows_cnt
1	4
2	5
3	5
4	4
5	4
6	7
SELECT (b % 7) AS `partition`, b, a, length(c) FROM t1_will_crash ORDER BY `partition`, b, a;
partition	b	a	length(c)
1	1	abc	64
1	8	tuw	64
1	29	kkkkkkkkKkk	64
1	71	eee	64
2	2	def	64
2	9	vxy	64
2	23	lll	64
2	30	2 crashed after _mi_mark_changed	64
2	79	ccc	64
3	3	ghi	64
3	10	aaa	64
3	17	nnn	64
3	24	3 crashed after write_record	64
3	73	ddd	64
4	4	pqr	64
4	11	bbb	64
4	18	4 crashed after flush_cached_blocks	64
4	67	fff	64
5	5	mno	64
5	19	mmm	64
5	40	5 still here since crash in next row in multirow insert?	64
5	89	a	64
6	6	jkl	64
6	13	ooo	64
6	34	6 row 2	64
6	48	6 row 4	64
6	62	6 row 6	64
6	83	 	64
6	97	zzzzzZzzzzz	64
FLUSH TABLES;
#
# replacing p2 with crashed files (after _mi_mark_changed)
ALTER TABLE t1_will_crash CHECK PARTITION p2;
Table	Op	Msg_type	Msg_text
test.t1_will_crash	check	warning	1 client is using or hasn't closed the table properly
test.t1_will_crash	check	status	OK
# crash was when index only marked as opened, no real corruption
ALTER TABLE t1_will_crash CHECK PARTITION p2;
Table	Op	Msg_type	Msg_text
test.t1_will_crash	check	status	OK
FLUSH TABLES;
#
# replacing p4 with updated but not closed index file
ALTER TABLE t1_will_crash OPTIMIZE PARTITION p4;
Table	Op	Msg_type	Msg_text
test.t1_will_crash	optimize	error	Found key at page 2048 that points to record outside datafile
test.t1_will_crash	optimize	error	Partition p4 returned error
test.t1_will_crash	optimize	status	Operation failed
ALTER TABLE t1_will_crash CHECK PARTITION p4;
Table	Op	Msg_type	Msg_text
test.t1_will_crash	check	warning	Table is marked as crashed and last repair failed
test.t1_will_crash	check	warning	1 client is using or hasn't closed the table properly
test.t1_will_crash	check	warning	Size of datafile is: 368       Should be: 252
test.t1_will_crash	check	error	Found 4 keys of 3
test.t1_will_crash	check	error	Partition p4 returned error
test.t1_will_crash	check	error	Corrupt
ALTER TABLE t1_will_crash REPAIR PARTITION p4;
Table	Op	Msg_type	Msg_text
test.t1_will_crash	repair	warning	Number of rows changed from 3 to 4
test.t1_will_crash	repair	status	OK
FLUSH TABLES;
#
# replacing p6 with a crashed MYD file (2) (splitted dynamic record)
ALTER TABLE t1_will_crash CHECK PARTITION p6;
Table	Op	Msg_type	Msg_text
test.t1_will_crash	check	warning	Size of datafile is: 868       Should be: 604
test.t1_will_crash	check	error	Unexpected byte: 0 at link: 340
test.t1_will_crash	check	error	Partition p6 returned error
test.t1_will_crash	check	error	Corrupt
ALTER TABLE t1_will_crash REPAIR PARTITION p6;
Table	Op	Msg_type	Msg_text
test.t1_will_crash	repair	info	Delete link points outside datafile at 340
test.t1_will_crash	repair	info	Delete link points outside datafile at 340
test.t1_will_crash	repair	status	OK
SELECT (b % 7) AS `partition`, b, a, length(c) FROM t1_will_crash
WHERE (b % 7) = 6
ORDER BY `partition`, b, a;
partition	b	a	length(c)
6	6	jkl	64
6	13	ooo	64
6	34	6 row 2	64
6	48	6 row 4	64
6	62	6 row 6	64
6	83	 	64
6	97	zzzzzZzzzzz	64
FLUSH TABLES;
#
# replacing p6 with a crashed MYD file (3) (splitted dynamic record)
# Different results from the corrupt table, which can lead to dropping
# of the not completely written rows when using REBUILD on a corrupt
# table, depending if one reads via index or direct on datafile.
# Since crash when reuse of deleted row space, CHECK MEDIUM or EXTENDED
# is required (MEDIUM is default) to verify correct behavior!
SELECT (b % 7) AS `partition`, b, a, length(c) FROM t1_will_crash
WHERE (b % 7) = 6
ORDER BY `partition`, b, a;
partition	b	a	length(c)
6	6	jkl	64
6	13	ooo	64
6	34	6 row 2	64
6	83	 	64
6	97	zzzzzZzzzzz	64
SET @save_optimizer_switch= @@optimizer_switch;
SET @@optimizer_switch='derived_merge=off';
SELECT (b % 7) AS `partition`, b, a FROM (SELECT b,a FROM t1_will_crash) q
WHERE (b % 7) = 6
ORDER BY `partition`, b, a;
partition	b	a
6	6	jkl
6	13	ooo
6	34	6 row 2
6	48	6 row 4
6	62	6 row 6
6	83	 
6	97	zzzzzZzzzzz
SET @@optimizer_switch=@save_optimizer_switch;
ALTER TABLE t1_will_crash CHECK PARTITION p6;
Table	Op	Msg_type	Msg_text
test.t1_will_crash	check	warning	Size of datafile is: 868       Should be: 604
test.t1_will_crash	check	error	Record-count is not ok; is 8   Should be: 7
test.t1_will_crash	check	warning	Found 10 key parts. Should be: 7
test.t1_will_crash	check	error	Partition p6 returned error
test.t1_will_crash	check	error	Corrupt
ALTER TABLE t1_will_crash REPAIR PARTITION p6;
Table	Op	Msg_type	Msg_text
test.t1_will_crash	repair	warning	Number of rows changed from 7 to 8
test.t1_will_crash	repair	status	OK
SELECT COUNT(*) FROM t1_will_crash;
COUNT(*)
29
SELECT (b % 7) AS `partition`, COUNT(*) AS rows_cnt FROM t1_will_crash GROUP BY (b % 7);
partition	rows_cnt
1	4
2	4
3	5
4	4
5	4
6	8
SELECT (b % 7) AS `partition`, b, a, length(c) FROM t1_will_crash ORDER BY `partition`, b, a;
partition	b	a	length(c)
1	1	abc	64
1	8	tuw	64
1	29	kkkkkkkkKkk	64
1	71	eee	64
2	2	def	64
2	9	vxy	64
2	23	lll	64
2	79	ccc	64
3	3	ghi	64
3	10	aaa	64
3	17	nnn	64
3	24	3 crashed after write_record	64
3	73	ddd	64
4	4	pqr	64
4	11	bbb	64
4	18	4 crashed after flush_cached_blocks	64
4	67	fff	64
5	5	mno	64
5	19	mmm	64
5	40	5 still here since crash in next row in multirow insert?	64
5	89	a	64
6	6	jkl	64
6	13	ooo	64
6	27	6 row 7 (crash before completely written to datafile)	128
6	34	6 row 2	64
6	48	6 row 4	64
6	62	6 row 6	64
6	83	 	64
6	97	zzzzzZzzzzz	64
ALTER TABLE t1_will_crash CHECK PARTITION all EXTENDED;
Table	Op	Msg_type	Msg_text
test.t1_will_crash	check	status	OK
DROP TABLE t1_will_crash;