[ Avaa Bypassed ]




Upload:

Command:

hmhc3928@3.22.81.96: ~ $
# 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
3
6
9
1
4
7
10
2
5
8
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
3
6
9
1
4
7
10
2
5
8
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
2
4
6
1
3
5
8
10
7
9
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
2
4
6
1
3
5
8
10
7
9
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
2
4
6
1
3
5
8
10
7
9
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 FROM t1_will_crash GROUP BY (b % 7);
partition	rows
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	status	OK
OPTIMIZE TABLE t1_will_crash;
Table	Op	Msg_type	Msg_text
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 FROM t1_will_crash GROUP BY (b % 7);
partition	rows
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
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
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 FROM t1_will_crash GROUP BY (b % 7);
partition	rows
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;

Filemanager

Name Type Size Permission Actions
part_blocked_sql_func_innodb.result File 159.68 KB 0644
part_blocked_sql_func_myisam.result File 159.68 KB 0644
part_ctype_utf32.result File 355 B 0644
part_supported_sql_func_innodb.result File 238.66 KB 0644
part_supported_sql_func_myisam.result File 238.66 KB 0644
partition-dml-1-1-innodb-modes.result File 19.2 KB 0644
partition-dml-1-1-innodb.result File 8.38 KB 0644
partition-dml-1-1-myisam-modes.result File 19.2 KB 0644
partition-dml-1-1-myisam.result File 8.38 KB 0644
partition-dml-1-10-innodb.result File 5.37 KB 0644
partition-dml-1-10-myisam.result File 5.29 KB 0644
partition-dml-1-11-innodb.result File 7.08 KB 0644
partition-dml-1-11-myisam.result File 7.08 KB 0644
partition-dml-1-2-innodb.result File 6.11 KB 0644
partition-dml-1-2-myisam.result File 6.11 KB 0644
partition-dml-1-3-innodb.result File 7.27 KB 0644
partition-dml-1-4-innodb.result File 5.5 KB 0644
partition-dml-1-5-innodb.result File 5.52 KB 0644
partition-dml-1-6-innodb.result File 5.52 KB 0644
partition-dml-1-7-innodb.result File 6.96 KB 0644
partition-dml-1-8-innodb.result File 6.94 KB 0644
partition-dml-1-9-innodb.result File 18.38 KB 0644
partition-dml-1-9-myisam.result File 18.38 KB 0644
partition_alter1_1_2_innodb.result File 1020.49 KB 0644
partition_alter1_1_2_myisam.result File 303.96 KB 0644
partition_alter1_1_innodb.result File 596.87 KB 0644
partition_alter1_1_myisam.result File 309.05 KB 0644
partition_alter1_2_innodb.result File 1.26 MB 0644
partition_alter1_2_myisam.result File 539.78 KB 0644
partition_alter2_1_1_innodb.result File 718.67 KB 0644
partition_alter2_1_2_innodb.result File 719.61 KB 0644
partition_alter2_1_myisam.result File 875.52 KB 0644
partition_alter2_2_1_innodb.result File 720.91 KB 0644
partition_alter2_2_2_innodb.result File 725.47 KB 0644
partition_alter2_2_myisam.result File 880.39 KB 0644
partition_alter3_innodb.result File 27.19 KB 0644
partition_alter3_myisam.result File 28.01 KB 0644
partition_alter4_innodb.result File 3.12 MB 0644
partition_alter4_myisam.result File 3.18 MB 0644
partition_auto_increment_archive.result File 21.62 KB 0644
partition_auto_increment_blackhole.result File 24.09 KB 0644
partition_auto_increment_innodb.result File 23.72 KB 0644
partition_auto_increment_memory.result File 23.73 KB 0644
partition_auto_increment_myisam.result File 23.89 KB 0644
partition_basic_innodb.result File 1.11 MB 0644
partition_basic_myisam.result File 566.34 KB 0644
partition_basic_symlink_innodb.result File 4.11 KB 0644
partition_basic_symlink_myisam.result File 753.67 KB 0644
partition_bit_innodb.result File 6.45 KB 0644
partition_bit_myisam.result File 6.45 KB 0644
partition_char_innodb.result File 56.13 KB 0644
partition_char_myisam.result File 56.13 KB 0644
partition_datetime_innodb.result File 37.62 KB 0644
partition_datetime_myisam.result File 37.62 KB 0644
partition_debug.result File 57.71 KB 0644
partition_debug_innodb.result File 243.04 KB 0644
partition_debug_myisam.result File 192.25 KB 0644
partition_debug_sync_innodb.result File 2.56 KB 0644
partition_decimal_innodb.result File 5.53 KB 0644
partition_decimal_myisam.result File 5.54 KB 0644
partition_engine_innodb.result File 182.75 KB 0644
partition_engine_myisam.result File 184.74 KB 0644
partition_exch_innodb.result File 6.52 KB 0644
partition_exch_myisam.result File 6.52 KB 0644
partition_exch_myisam_innodb.result File 484 B 0644
partition_exch_qa.result File 6.52 KB 0644
partition_exch_qa_10.result File 1.67 KB 0644
partition_exch_qa_11.result File 1.36 KB 0644
partition_exch_qa_12.result File 2.4 KB 0644
partition_exch_qa_13.result File 3.87 KB 0644
partition_exch_qa_14.result File 1.32 KB 0644
partition_exch_qa_15.result File 624 B 0644
partition_exch_qa_1_innodb.result File 4.06 KB 0644
partition_exch_qa_1_myisam.result File 4.06 KB 0644
partition_exch_qa_2.result File 3.32 KB 0644
partition_exch_qa_3.result File 644 B 0644
partition_exch_qa_4_innodb.result File 1.48 KB 0644
partition_exch_qa_4_myisam.result File 1.48 KB 0644
partition_exch_qa_5_innodb.result File 3.09 KB 0644
partition_exch_qa_5_myisam.result File 3.09 KB 0644
partition_exch_qa_6.result File 2.93 KB 0644
partition_exch_qa_7_innodb.result File 1.28 KB 0644
partition_exch_qa_7_myisam.result File 1.28 KB 0644
partition_exch_qa_8_innodb.result File 1.88 KB 0644
partition_exch_qa_8_myisam.result File 1.88 KB 0644
partition_exchange_archive.result File 10.41 KB 0644
partition_exchange_blackhole.result File 440 B 0644
partition_exchange_innodb.result File 12.85 KB 0644
partition_exchange_memory.result File 12.85 KB 0644
partition_exchange_myisam.result File 12.85 KB 0644
partition_float_innodb.result File 3.64 KB 0644
partition_float_myisam.result File 3.64 KB 0644
partition_innodb_status_file.result File 439 B 0644
partition_int_innodb.result File 11.66 KB 0644
partition_int_myisam.result File 11.66 KB 0644
partition_max_parts_hash_innodb.result File 1.72 KB 0644
partition_max_parts_hash_myisam.result File 1.72 KB 0644
partition_max_parts_inv_innodb.result File 748.54 KB 0644
partition_max_parts_inv_myisam.result File 748.54 KB 0644
partition_max_parts_key_innodb.result File 1.64 KB 0644
partition_max_parts_key_myisam.result File 1.64 KB 0644
partition_max_parts_list_innodb.result File 413.37 KB 0644
partition_max_parts_list_myisam.result File 413.37 KB 0644
partition_max_parts_range_innodb.result File 335 KB 0644
partition_max_parts_range_myisam.result File 335 KB 0644
partition_max_sub_parts_key_list_innodb.result File 201.48 KB 0644
partition_max_sub_parts_key_list_myisam.result File 201.48 KB 0644
partition_max_sub_parts_key_range_innodb.result File 167.07 KB 0644
partition_max_sub_parts_key_range_myisam.result File 167.07 KB 0644
partition_max_sub_parts_list_innodb.result File 201.46 KB 0644
partition_max_sub_parts_list_myisam.result File 201.46 KB 0644
partition_max_sub_parts_range_innodb.result File 167.04 KB 0644
partition_max_sub_parts_range_myisam.result File 167.04 KB 0644
partition_mgm_lc0_archive.result File 19.6 KB 0644
partition_mgm_lc0_innodb.result File 24.07 KB 0644
partition_mgm_lc0_memory.result File 24.12 KB 0644
partition_mgm_lc0_myisam.result File 24.07 KB 0644
partition_mgm_lc1_archive.result File 19.99 KB 0644
partition_mgm_lc1_innodb.result File 24.47 KB 0644
partition_mgm_lc1_memory.result File 24.52 KB 0644
partition_mgm_lc1_myisam.result File 24.47 KB 0644
partition_mgm_lc2_archive.result File 19.99 KB 0644
partition_mgm_lc2_innodb.result File 24.47 KB 0644
partition_mgm_lc2_memory.result File 24.52 KB 0644
partition_mgm_lc2_myisam.result File 24.47 KB 0644
partition_recover_myisam.result File 1.71 KB 0644
partition_reorganize_innodb.result File 7.06 KB 0644
partition_reorganize_myisam.result File 5.72 KB 0644
partition_repair_myisam.result File 16.07 KB 0644
partition_special_innodb.result File 18.36 KB 0644
partition_special_myisam.result File 14.85 KB 0644
partition_syntax_innodb.result File 61.36 KB 0644
partition_syntax_myisam.result File 62.92 KB 0644
partition_t55.out File 4.5 KB 0644
partition_value_innodb.result File 7.36 KB 0644
partition_value_myisam.result File 7.36 KB 0644
rpl-partition-dml-1-1-innodb.result File 6.78 KB 0644
rpl-partition-dml-1-1-myisam.result File 6.78 KB 0644
rpl_partition.result File 5.51 KB 0644