This file is indexed.

/usr/lib/mysql-testsuite/r/archive_debug.result is in mysql-testsuite-5.6 5.6.16-1~exp1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
#
# BUG#12402794 - 60976: CRASH, VALGRIND WARNING AND MEMORY LEAK
#                       WITH PARTITIONED ARCHIVE TABLES
#
CREATE TABLE t1(a INT) ENGINE=ARCHIVE;
INSERT INTO t1 VALUES(1);
SET SESSION debug='d,simulate_archive_open_failure';
CHECK TABLE t1;
Table	Op	Msg_type	Msg_text
test.t1	check	error	Corrupt
SET SESSION debug=DEFAULT;
DROP TABLE t1;